aboutsummaryrefslogtreecommitdiff
path: root/simon
diff options
context:
space:
mode:
authorTravis Howell2003-06-16 08:28:15 +0000
committerTravis Howell2003-06-16 08:28:15 +0000
commitb95ad2784988b6bfa8f89fb865cb052dc806576e (patch)
tree3e747e87774abfd28b6385315e6f9faefd8dd95e /simon
parent2d8bb4a6f6143075e8a47482226a43bd87c99955 (diff)
downloadscummvm-rg350-b95ad2784988b6bfa8f89fb865cb052dc806576e.tar.gz
scummvm-rg350-b95ad2784988b6bfa8f89fb865cb052dc806576e.tar.bz2
scummvm-rg350-b95ad2784988b6bfa8f89fb865cb052dc806576e.zip
misc.
svn-id: r8514
Diffstat (limited to 'simon')
-rw-r--r--simon/debug.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/simon/debug.cpp b/simon/debug.cpp
index 62b3b03431..84f0cb69aa 100644
--- a/simon/debug.cpp
+++ b/simon/debug.cpp
@@ -38,13 +38,13 @@ byte *SimonEngine::dumpOpcode(byte *p) {
if (opcode == 255)
return NULL;
if (_game & GF_SIMON2 && _game & GF_TALKIE) {
- st = s = simon2talkie_opcode_name_table[opcode];
+ st = s = simon2talkie_opcode_name_table[opcode];
} else if (_game & GF_TALKIE) {
- st = s = simon1talkie_opcode_name_table[opcode];
+ st = s = simon1talkie_opcode_name_table[opcode];
} else if (_game & GF_SIMON2) {
- st = s = simon2dos_opcode_name_table[opcode];
+ st = s = simon2dos_opcode_name_table[opcode];
} else {
- st = s = simon1dos_opcode_name_table[opcode];
+ st = s = simon1dos_opcode_name_table[opcode];
}
if (s == NULL) {
error("INVALID OPCODE %d\n", opcode);
@@ -187,9 +187,9 @@ void SimonEngine::dump_video_script(byte *src, bool one_opcode_only) {
}
if (!(_game & GF_SIMON2)) {
- strn = str = simon1_video_opcode_name_table[opcode];
+ strn = str = simon1_video_opcode_name_table[opcode];
} else {
- strn = str = simon2_video_opcode_name_table[opcode];
+ strn = str = simon2_video_opcode_name_table[opcode];
}
while (*strn != '|')