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
1 changed files with 1 additions and 1 deletions

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