diff options
| author | SammygoodTunes <sygamerz@gmail.com> | 2025-04-20 12:12:51 +0200 |
|---|---|---|
| committer | SammygoodTunes <sygamerz@gmail.com> | 2025-04-20 12:12:51 +0200 |
| commit | 60e6b907127bbd84bd65cd569249cca42edb306c (patch) | |
| tree | 2d6d5a388647315a20a648de20884d478e3249ba | |
| parent | b1c550822b9b32cee42626b1a6015e2a21c712c3 (diff) | |
Update
| -rw-r--r-- | libs/c/include/stdio.h | 2 | ||||
| -rw-r--r-- | src/00_Core/Map/MapManager.cpp | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/libs/c/include/stdio.h b/libs/c/include/stdio.h index 5835ab24..63f34b0c 100644 --- a/libs/c/include/stdio.h +++ b/libs/c/include/stdio.h @@ -1,6 +1,6 @@ #ifndef _C_STDIO_H #define _C_STDIO_H -extern int sprintf(char *__restrict s, const char *__restrict format, ...); +int sprintf(char *__restrict s, const char *__restrict format, ...); #endif
\ No newline at end of file diff --git a/src/00_Core/Map/MapManager.cpp b/src/00_Core/Map/MapManager.cpp index d54c7b3b..762bfd99 100644 --- a/src/00_Core/Map/MapManager.cpp +++ b/src/00_Core/Map/MapManager.cpp @@ -1938,13 +1938,13 @@ u8 MapManager::GetMapData_Unk_09() { } ARM void MapManager::func_ov00_02084d24(unk32 param_2, unk32 param_3, unk32 param_4) { - unk8 local_8; - unk8 local_7; + unk8 local_8 = param_2; + unk8 local_7 = param_3; unk16 uStack_6; uStack_6 = (unk16) ((u32) param_4 >> 0x10); - // _local_8 = CONCAT11(param_3, param_2); // What is CONCAT11 ? - this->mMap->vfunc_90(param_2, param_3, param_4); // Missing parameter ? + // _local_8 = CONCAT11(param_3, param_2); + this->mMap->vfunc_90(param_2, param_3, param_4); } s32 MapManager::func_ov00_02084d4c(unk32 param_2, unk32 param_3, Vec3p *param_4) { |
