summaryrefslogtreecommitdiffstats
path: root/src/core/Streaming.cpp
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-10-17 17:26:48 +0200
committerSergeanur <s.anureev@yandex.ua>2020-10-17 17:26:48 +0200
commit588fb26728c9a8ac287c216464c52a6eeb9781e7 (patch)
tree6fc1159e98a16af97b4a8fdd1ba763aac29d3476 /src/core/Streaming.cpp
parentFix management issue (diff)
downloadre3-588fb26728c9a8ac287c216464c52a6eeb9781e7.tar
re3-588fb26728c9a8ac287c216464c52a6eeb9781e7.tar.gz
re3-588fb26728c9a8ac287c216464c52a6eeb9781e7.tar.bz2
re3-588fb26728c9a8ac287c216464c52a6eeb9781e7.tar.lz
re3-588fb26728c9a8ac287c216464c52a6eeb9781e7.tar.xz
re3-588fb26728c9a8ac287c216464c52a6eeb9781e7.tar.zst
re3-588fb26728c9a8ac287c216464c52a6eeb9781e7.zip
Diffstat (limited to 'src/core/Streaming.cpp')
-rw-r--r--src/core/Streaming.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/Streaming.cpp b/src/core/Streaming.cpp
index ddde4664..40d4acee 100644
--- a/src/core/Streaming.cpp
+++ b/src/core/Streaming.cpp
@@ -903,7 +903,7 @@ CStreaming::RequestSpecialModel(int32 modelId, const char *modelName, int32 flag
int i, n;
mi = CModelInfo::GetModelInfo(modelId);
- if(!CGeneral::faststrcmp("CSPlay", modelName)){
+ if(strncasecmp("CSPlay", modelName, 6) == 0){
char *curname = CModelInfo::GetModelInfo(MI_PLAYER)->GetName();
for(int i = 0; CSnames[i][0]; i++){
if(strcasecmp(curname, IGnames[i]) == 0){