summaryrefslogtreecommitdiff
path: root/src/modelinfo/ModelIndices.cpp
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2019-10-30 01:12:58 +0200
committerSergeanur <s.anureev@yandex.ua>2019-10-30 01:35:31 +0200
commitc202fc3b550b8fc569f510e2002241eec399c18d (patch)
treee3d267990b344709533c925a4169cd71dfaa8394 /src/modelinfo/ModelIndices.cpp
parentc075b863d208dd297a4fbd13aa33597db7ca6528 (diff)
Implemented faststrcmp, faststricmp, strcasecmp
Diffstat (limited to 'src/modelinfo/ModelIndices.cpp')
-rw-r--r--src/modelinfo/ModelIndices.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modelinfo/ModelIndices.cpp b/src/modelinfo/ModelIndices.cpp
index bf6b3905..ec039a0b 100644
--- a/src/modelinfo/ModelIndices.cpp
+++ b/src/modelinfo/ModelIndices.cpp
@@ -1,5 +1,6 @@
#include "common.h"
#include "patcher.h"
+#include "General.h"
#include "ModelIndices.h"
#define X(name, var, addr) int16 &var = *(int16*)addr;
@@ -18,7 +19,7 @@ void
MatchModelString(const char *modelname, int16 id)
{
#define X(name, var, addr) \
- if(strcmp(name, modelname) == 0){ \
+ if(!CGeneral::faststrcmp(name, modelname)){ \
var = id; \
return; \
}