diff options
| author | SammygoodTunes <sygamerz@gmail.com> | 2025-04-06 22:32:49 +0200 |
|---|---|---|
| committer | SammygoodTunes <sygamerz@gmail.com> | 2025-04-06 22:32:49 +0200 |
| commit | d5a2e0f57e469d780eb0e2ab1183aa40f93cf23c (patch) | |
| tree | 737e6246c572a403fc8bb19b3ea2e5c0a9c347c0 /include | |
| parent | 9e69f5de93e8805bccf69307eb08c8fab8519e8c (diff) | |
Decomp progress 30%
Change gPlayerPos from Vec3p* to Vec3p (thx lago)
Diffstat (limited to 'include')
| -rw-r--r-- | include/Map/MapBase.hpp | 2 | ||||
| -rw-r--r-- | include/Player/PlayerBase.hpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/Map/MapBase.hpp b/include/Map/MapBase.hpp index a99658ac..ecf92c08 100644 --- a/include/Map/MapBase.hpp +++ b/include/Map/MapBase.hpp @@ -112,7 +112,7 @@ public: /* 188 */ unk8 mUnk_188[0x14]; /* 19c */ unk32 mUnk_19c; /* 1a0 */ Vec3p mUnk_1a0; - /* 1ac */ unk32 mUnk_1ac; + /* 1ac */ s16 mUnk_1ac; /* 1b0 */ /* 00 */ virtual ~MapBase(); diff --git a/include/Player/PlayerBase.hpp b/include/Player/PlayerBase.hpp index f7caf604..ba4b3deb 100644 --- a/include/Player/PlayerBase.hpp +++ b/include/Player/PlayerBase.hpp @@ -62,6 +62,6 @@ public: }; extern PlayerBase *gPlayer; -extern Vec3p *gPlayerPos; +extern Vec3p gPlayerPos; extern Vec3p gPlayerVel; extern s16 gPlayerAngle; |
