summaryrefslogtreecommitdiffstats
path: root/src/core/Streaming.cpp
diff options
context:
space:
mode:
authorNikolay Korolev <nickvnuk@gmail.com>2020-10-17 17:50:41 +0200
committerNikolay Korolev <nickvnuk@gmail.com>2020-10-17 17:50:41 +0200
commitcae3990eacbf94c87c27387f4c78ef43760e106c (patch)
treed5718e66815841196eb1826c64b7d7b1b0439cda /src/core/Streaming.cpp
parentsaves part 1 (diff)
parentMerge pull request #765 from erorcun/miami (diff)
downloadre3-cae3990eacbf94c87c27387f4c78ef43760e106c.tar
re3-cae3990eacbf94c87c27387f4c78ef43760e106c.tar.gz
re3-cae3990eacbf94c87c27387f4c78ef43760e106c.tar.bz2
re3-cae3990eacbf94c87c27387f4c78ef43760e106c.tar.lz
re3-cae3990eacbf94c87c27387f4c78ef43760e106c.tar.xz
re3-cae3990eacbf94c87c27387f4c78ef43760e106c.tar.zst
re3-cae3990eacbf94c87c27387f4c78ef43760e106c.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){