diff options
author | Filippos Karapetis | 2012-06-14 12:10:39 +0300 |
---|---|---|
committer | Filippos Karapetis | 2012-06-14 12:20:37 +0300 |
commit | 0a3fb38bc728c11654810d426819853d86ae609c (patch) | |
tree | 9fcf8fdded9340ccbc5d05b8ded5755cd85385d4 /engines | |
parent | 84ed361370a83d1806cd146562c4debf3a6aa767 (diff) | |
download | scummvm-rg350-0a3fb38bc728c11654810d426819853d86ae609c.tar.gz scummvm-rg350-0a3fb38bc728c11654810d426819853d86ae609c.tar.bz2 scummvm-rg350-0a3fb38bc728c11654810d426819853d86ae609c.zip |
SCI: Add handling of two more configuration settings for LSL7
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/engine/kmisc.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/sci/engine/kmisc.cpp b/engines/sci/engine/kmisc.cpp index 47c891eefd..2e80764d01 100644 --- a/engines/sci/engine/kmisc.cpp +++ b/engines/sci/engine/kmisc.cpp @@ -388,6 +388,12 @@ reg_t kGetConfig(EngineState *s, int argc, reg_t *argv) { // Used to enable the debug mode in Torin's Passage (French). // If true, the debug mode is enabled. s->_segMan->strcpy(data, ""); + } else if (setting == "leakdump") { + // An unknown setting in LSL7. Likely used for debugging. + s->_segMan->strcpy(data, ""); + } else if (setting == "startroom") { + // Debug setting in LSL7, specifies the room to start from. + s->_segMan->strcpy(data, ""); } else { error("GetConfig: Unknown configuration setting %s", setting.c_str()); } |