diff options
author | aap <aap@papnet.eu> | 2020-04-25 00:40:14 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2020-04-25 00:41:17 +0200 |
commit | ac19de45b88123b2284ecc3ab44cedcaa7ca496d (patch) | |
tree | 5e512242f7c7f41fcb9c685c2679c6b004bae8fd /src/core/Streaming.cpp | |
parent | 5bb4e9992679c9e8767d4eb6de54da1892ec13c6 (diff) |
few fixes
Diffstat (limited to 'src/core/Streaming.cpp')
-rw-r--r-- | src/core/Streaming.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/Streaming.cpp b/src/core/Streaming.cpp index 8124d11c..a76e9038 100644 --- a/src/core/Streaming.cpp +++ b/src/core/Streaming.cpp @@ -754,7 +754,8 @@ CStreaming::RequestSpecialModel(int32 modelId, const char *modelName, int32 flag }else RemoveModel(modelId); - ms_pExtraObjectsDir->FindItem(modelName, pos, size); + bool found = ms_pExtraObjectsDir->FindItem(modelName, pos, size); + assert(found); mi->ClearTexDictionary(); if(CTxdStore::FindTxdSlot(modelName) == -1) mi->SetTexDictionary("generic"); |