diff options
author | Strangerke | 2013-01-18 19:03:38 +0100 |
---|---|---|
committer | Strangerke | 2013-01-18 19:03:38 +0100 |
commit | 4fd4a5ce0565c158af81d8aea6c67bea35501181 (patch) | |
tree | 519f4732acad543ab6c418e1d8eceab7e8f38851 /engines | |
parent | 4fd422692b554d4c49e2f00662f36f24bb9f1b24 (diff) | |
download | scummvm-rg350-4fd4a5ce0565c158af81d8aea6c67bea35501181.tar.gz scummvm-rg350-4fd4a5ce0565c158af81d8aea6c67bea35501181.tar.bz2 scummvm-rg350-4fd4a5ce0565c158af81d8aea6c67bea35501181.zip |
HOPKINS: Fix cut&paste error in searchCat. Thanks eriktorbjorn for pointing at it
Diffstat (limited to 'engines')
-rw-r--r-- | engines/hopkins/files.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hopkins/files.cpp b/engines/hopkins/files.cpp index dbb33576bc..71d06ddd22 100644 --- a/engines/hopkins/files.cpp +++ b/engines/hopkins/files.cpp @@ -167,7 +167,7 @@ byte *FileManager::searchCat(const Common::String &file, int a2) { case 9: { Common::String tmpFilename; if (_vm->getPlatform() == Common::kPlatformOS2 || _vm->getPlatform() == Common::kPlatformBeOS) - tmpFilename = "ENG_VOI.RES"; + tmpFilename = "ENG_VOI.CAT"; // Win95 and Linux versions uses another set of names else { switch (_vm->_globals._language) { |