Merge pull request #289 from lioncash/call

CAnimTreeAnimReaderContainer: Correct call to VGetBoolPOIState() within VGetInt32POIState()
This commit is contained in:
Luke Street 2020-03-31 02:20:01 -04:00 committed by GitHub
commit 5161bc2988
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ bool CAnimTreeAnimReaderContainer::VGetBoolPOIState(const char* name) const {
}
s32 CAnimTreeAnimReaderContainer::VGetInt32POIState(const char* name) const {
return x14_reader->VGetBoolPOIState(name);
return x14_reader->VGetInt32POIState(name);
}
CParticleData::EParentedMode CAnimTreeAnimReaderContainer::VGetParticlePOIState(const char* name) const {