aboutsummaryrefslogtreecommitdiff
path: root/simon
diff options
context:
space:
mode:
authorTravis Howell2002-11-24 13:44:24 +0000
committerTravis Howell2002-11-24 13:44:24 +0000
commit37f43fe2baad96981ef344e15a7194adb47fe337 (patch)
tree679335ad407420bf2c014194aae1e347dbd2566d /simon
parent40983dcf68b2e363bfea52a4f6929a3c5c478d0e (diff)
downloadscummvm-rg350-37f43fe2baad96981ef344e15a7194adb47fe337.tar.gz
scummvm-rg350-37f43fe2baad96981ef344e15a7194adb47fe337.tar.bz2
scummvm-rg350-37f43fe2baad96981ef344e15a7194adb47fe337.zip
Missed a few disabled debugs
svn-id: r5711
Diffstat (limited to 'simon')
-rw-r--r--simon/vga.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/simon/vga.cpp b/simon/vga.cpp
index 1679608c1d..6fbe841ac1 100644
--- a/simon/vga.cpp
+++ b/simon/vga.cpp
@@ -269,7 +269,8 @@ void SimonState::vc_2()
_vc_ptr = _cur_vga_file_1 + READ_BE_UINT16_UNALIGNED(&((VgaFile1Struct0x8 *) b)->script_offs);
-// dump_vga_script(_vc_ptr, res, num);
+ if (_vgascript_toggle)
+ dump_vga_script(_vc_ptr, res, num);
run_vga_script();
_cur_vga_file_1 = old_file_1;
@@ -358,7 +359,8 @@ void SimonState::vc_3()
}
#endif
-// dump_vga_script(_cur_vga_file_1 + READ_BE_UINT16_UNALIGNED(&((VgaFile1Struct0x6*)p)->script_offs), res, b);
+ if (_vgascript_toggle)
+ dump_vga_script(_cur_vga_file_1 + READ_BE_UINT16_UNALIGNED(&((VgaFile1Struct0x6*)p)->script_offs), res, b);
add_vga_timer(gss->VGA_DELAY_BASE,
_cur_vga_file_1 + READ_BE_UINT16_UNALIGNED(&((VgaFile1Struct0x6 *) p)->script_offs),
@@ -1789,7 +1791,7 @@ void SimonState::vc_62()
vc_29_stop_all_sounds();
- if (((_game & GAME_SIMON2)) && (!_video_var_3)) {
+ if ((_game & GAME_SIMON2) && (!_video_var_3)) {
warning("vc_62: music stuff?");
}