diff options
Diffstat (limited to 'src/peds/PedFight.cpp')
-rw-r--r-- | src/peds/PedFight.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/peds/PedFight.cpp b/src/peds/PedFight.cpp index 3e0dfb6d..151d3806 100644 --- a/src/peds/PedFight.cpp +++ b/src/peds/PedFight.cpp @@ -2393,8 +2393,8 @@ CPed::LoadFightData(void) break; } - if (strncmp(animName, "default", 8) != 0) { - if (strncmp(animName, "null", 5) != 0) { + if (strcmp(animName, "default") != 0) { + if (strcmp(animName, "null") != 0) { animAssoc = CAnimManager::GetAnimAssociation(ASSOCGRP_STD, animName); tFightMoves[moveId].animId = (AnimationId)animAssoc->animId; } else { |