2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-07 18:45:51 +00:00

Merge pull request #290 from lioncash/call

CAnimTreeDoubleChild: Correct call to VGetBoolPOIState() in VGetInt32POIState()
This commit is contained in:
Luke Street 2020-03-31 02:53:13 -04:00 committed by GitHub
commit 13ce419554
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -103,7 +103,7 @@ u32 CAnimTreeDoubleChild::VGetSoundPOIList(const CCharAnimTime& time, CSoundPOIN
bool CAnimTreeDoubleChild::VGetBoolPOIState(const char* name) const { return x18_b->VGetBoolPOIState(name); }
s32 CAnimTreeDoubleChild::VGetInt32POIState(const char* name) const { return x18_b->VGetBoolPOIState(name); }
s32 CAnimTreeDoubleChild::VGetInt32POIState(const char* name) const { return x18_b->VGetInt32POIState(name); }
CParticleData::EParentedMode CAnimTreeDoubleChild::VGetParticlePOIState(const char* name) const {
return x18_b->VGetParticlePOIState(name);