diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/titanic/true_talk/dialogue_file.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/true_talk/dialogue_file.cpp b/engines/titanic/true_talk/dialogue_file.cpp index 34eb164779..cbd3685315 100644 --- a/engines/titanic/true_talk/dialogue_file.cpp +++ b/engines/titanic/true_talk/dialogue_file.cpp @@ -60,7 +60,7 @@ DialogueResource *CDialogueFile::addToCache(int index) { // Scan cache for a free slot uint cacheIndex = 0; - while (cacheIndex < _cache.size() && !_cache[cacheIndex]._active) + while (cacheIndex < _cache.size() && _cache[cacheIndex]._active) ++cacheIndex; if (cacheIndex == _cache.size()) return nullptr; |