aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/debugger.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2011-11-03 01:27:53 +0000
committerEugene Sandulenko2011-11-03 01:34:53 +0000
commit55b95e3f50198e93873fc57440b37ac5fbe5b153 (patch)
tree5a4e7995048de9a1cd0a6c5e9f2d3537e5d55ead /engines/scumm/debugger.cpp
parent31e5b96fae452e7f4d71dedf8e4303887a971728 (diff)
downloadscummvm-rg350-55b95e3f50198e93873fc57440b37ac5fbe5b153.tar.gz
scummvm-rg350-55b95e3f50198e93873fc57440b37ac5fbe5b153.tar.bz2
scummvm-rg350-55b95e3f50198e93873fc57440b37ac5fbe5b153.zip
SCUMM: Fix copy/paste errors
Diffstat (limited to 'engines/scumm/debugger.cpp')
-rw-r--r--engines/scumm/debugger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/debugger.cpp b/engines/scumm/debugger.cpp
index 9cfdfbccc9..54f7fea97b 100644
--- a/engines/scumm/debugger.cpp
+++ b/engines/scumm/debugger.cpp
@@ -292,7 +292,7 @@ bool ScummDebugger::Cmd_ImportRes(int argc, const char** argv) {
if (_vm->_game.features & GF_SMALL_HEADER) {
size = file.readUint16LE();
file.seek(-2, SEEK_CUR);
- } else if (_vm->_game.features & GF_SMALL_HEADER) {
+ } else if (_vm->_game.features & GF_SMALL_HEADER) { // FIXME: This never was executed
if (_vm->_game.version == 4)
file.seek(8, SEEK_CUR);
size = file.readUint32LE();