diff options
| author | Léo Lam <leo@leolam.fr> | 2021-07-07 13:58:36 +0200 |
|---|---|---|
| committer | Léo Lam <leo@leolam.fr> | 2021-07-07 14:04:39 +0200 |
| commit | 1b6c549a38de8fb27d2eb6584888feed972570a2 (patch) | |
| tree | fdc9d78c12bf650e7d0237e176b1646f2f18ec60 /src/KingSystem/Map/mapObject.cpp | |
| parent | 4b6b81b1902e94f1e17c5eb5de1fe77490b9a37c (diff) | |
ksys/map: Fix matching issues
Diffstat (limited to 'src/KingSystem/Map/mapObject.cpp')
| -rw-r--r-- | src/KingSystem/Map/mapObject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/KingSystem/Map/mapObject.cpp b/src/KingSystem/Map/mapObject.cpp index 4cdc137f..e693439a 100644 --- a/src/KingSystem/Map/mapObject.cpp +++ b/src/KingSystem/Map/mapObject.cpp @@ -499,7 +499,7 @@ void* Object::getRails() const { void* Object::getRails_0() const { if (mLinkData == nullptr) return nullptr; - return mLinkData->mRail; + return mLinkData->mRails; } bool Object::allocLinkData(sead::Heap* heap) { |
