diff options
author | Paul Gilbert | 2017-08-26 12:39:34 -0400 |
---|---|---|
committer | Paul Gilbert | 2017-08-26 12:39:34 -0400 |
commit | 6291eb75d0690c1e3c88434b6e1720f051341969 (patch) | |
tree | dd9a0af3c8cf1dee95378dc376b81d53a73dc8c0 /engines/titanic | |
parent | 003331c44c34b65db41aaee38d31e499cf4153f1 (diff) | |
download | scummvm-rg350-6291eb75d0690c1e3c88434b6e1720f051341969.tar.gz scummvm-rg350-6291eb75d0690c1e3c88434b6e1720f051341969.tar.bz2 scummvm-rg350-6291eb75d0690c1e3c88434b6e1720f051341969.zip |
TITANIC: Fix German strings in create_titanic, regenerate titanic.dat
Diffstat (limited to 'engines/titanic')
-rw-r--r-- | engines/titanic/support/files_manager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/support/files_manager.cpp b/engines/titanic/support/files_manager.cpp index f50a71a3e9..fbfb7e0f61 100644 --- a/engines/titanic/support/files_manager.cpp +++ b/engines/titanic/support/files_manager.cpp @@ -50,7 +50,7 @@ bool CFilesManager::loadResourceIndex() { return false; } - if (_version < 2) { + if (_version != 3) { g_vm->GUIError("titanic.dat is out of date"); return false; } |