diff options
Diffstat (limited to 'engines/sherlock')
-rw-r--r-- | engines/sherlock/scalpel/scalpel_map.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/sherlock/scalpel/scalpel_map.cpp b/engines/sherlock/scalpel/scalpel_map.cpp index 613587d2e5..bcb41abe73 100644 --- a/engines/sherlock/scalpel/scalpel_map.cpp +++ b/engines/sherlock/scalpel/scalpel_map.cpp @@ -95,8 +95,7 @@ void ScalpelMap::loadData() { return; // Load the list of location names - Common::SeekableReadStream *txtStream = _vm->_res->load( - _vm->getGameID() == GType_SerratedScalpel ? "chess.txt" : "map.txt"); + Common::SeekableReadStream *txtStream = _vm->_res->load("chess.txt"); int streamSize = txtStream->size(); while (txtStream->pos() < streamSize) { |