diff options
author | Sergeanur <s.anureev@yandex.ua> | 2019-10-30 01:12:58 +0200 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2019-10-30 01:35:31 +0200 |
commit | c202fc3b550b8fc569f510e2002241eec399c18d (patch) | |
tree | e3d267990b344709533c925a4169cd71dfaa8394 /src/animation/RpAnimBlend.cpp | |
parent | c075b863d208dd297a4fbd13aa33597db7ca6528 (diff) |
Implemented faststrcmp, faststricmp, strcasecmp
Diffstat (limited to 'src/animation/RpAnimBlend.cpp')
-rw-r--r-- | src/animation/RpAnimBlend.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/animation/RpAnimBlend.cpp b/src/animation/RpAnimBlend.cpp index 17394743..8108619e 100644 --- a/src/animation/RpAnimBlend.cpp +++ b/src/animation/RpAnimBlend.cpp @@ -1,5 +1,6 @@ #include "common.h" #include "patcher.h" +#include "General.h" #include "NodeName.h" #include "VisibilityPlugins.h" #include "AnimBlendClumpData.h" @@ -320,7 +321,7 @@ void FrameFindCallBack(AnimBlendFrameData *frame, void *arg) { char *nodename = GetFrameNodeName(frame->frame); - if(strcmpi(nodename, (char*)arg) == 0) + if(!CGeneral::faststricmp(nodename, (char*)arg)) pFrameDataFound = frame; } |