diff options
author | Nikolay Korolev <nickvnuk@gmail.com> | 2020-10-17 17:50:41 +0200 |
---|---|---|
committer | Nikolay Korolev <nickvnuk@gmail.com> | 2020-10-17 17:50:41 +0200 |
commit | cae3990eacbf94c87c27387f4c78ef43760e106c (patch) | |
tree | d5718e66815841196eb1826c64b7d7b1b0439cda /src/core/Streaming.cpp | |
parent | saves part 1 (diff) | |
parent | Merge pull request #765 from erorcun/miami (diff) | |
download | re3-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.cpp | 2 |
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){ |