1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-20 04:09:16 +00:00

Convert anim name in plAnimStage to a plString

This commit is contained in:
2014-01-09 19:44:36 -08:00
parent 0d53e4e0ec
commit b865e8c9f2
5 changed files with 40 additions and 55 deletions

View File

@ -229,7 +229,7 @@ bool plAvBrainGeneric::MatchAnimNames(const char *names[], int count)
int i;
for (i = 0; i < count; i++)
{
if (strcmp(names[i], GetStage(i)->GetAnimName()))
if (GetStage(i)->GetAnimName() != names[i])
return false; // different names.
}