2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-14 03:51:22 +00:00

CAnimTreeDoubleChild: Correct call to VGetBoolPOIState() in VGetInt32POIState()

Like the previous change, it's awfully suspect to be interpreting all
integer values as bools.
This commit is contained in:
Lioncash 2020-03-31 02:43:44 -04:00
parent 5161bc2988
commit aa8d147350

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);