diff options
author | Travis Howell | 2005-11-10 01:41:56 +0000 |
---|---|---|
committer | Travis Howell | 2005-11-10 01:41:56 +0000 |
commit | 1085bd26b583b6300c2c3c6def7448d8ace05842 (patch) | |
tree | 21322565bff211cc7fbd0ce81e5c3408f06c6671 /simon | |
parent | 889384b411303a0593d150c0f3f5b7d599fccb40 (diff) | |
download | scummvm-rg350-1085bd26b583b6300c2c3c6def7448d8ace05842.tar.gz scummvm-rg350-1085bd26b583b6300c2c3c6def7448d8ace05842.tar.bz2 scummvm-rg350-1085bd26b583b6300c2c3c6def7448d8ace05842.zip |
More accurate video opcodes output.
svn-id: r19544
Diffstat (limited to 'simon')
-rw-r--r-- | simon/debug.cpp | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/simon/debug.cpp b/simon/debug.cpp index 8692c22189..8ce2f3101a 100644 --- a/simon/debug.cpp +++ b/simon/debug.cpp @@ -176,7 +176,7 @@ void SimonEngine::dump_video_script(const byte *src, bool one_opcode_only) { const char *str, *strn; do { - if (!(_game & GF_SIMON2)) { + if (_game & GF_SIMON1) { opcode = READ_BE_UINT16(src); src += 2; } else { @@ -209,10 +209,13 @@ void SimonEngine::dump_video_script(const byte *src, bool one_opcode_only) { case 'b': fprintf(_dumpFile, "%d ", *src++); break; - case 'd': - fprintf(_dumpFile, "%d ", readUint16Wrapper(src)); - src += 2; - break; + case 'd': { + int16 tmp = (int16)readUint16Wrapper(src); + if (tmp < 0) tmp = vc_read_var(-tmp); + fprintf(_dumpFile, "%d ", tmp); + src += 2; + break; + } case 'v': fprintf(_dumpFile, "[%d] ", readUint16Wrapper(src)); src += 2; |