diff options
author | Travis Howell | 2002-12-14 15:56:17 +0000 |
---|---|---|
committer | Travis Howell | 2002-12-14 15:56:17 +0000 |
commit | 29ea4a4c49714139d57422560487855711aebf64 (patch) | |
tree | 03b779d2851e35f26d28858ab526edc9b5b0ea60 | |
parent | 490dbf25a20127d61e68ea96b832aec632bb4d0b (diff) | |
download | scummvm-rg350-29ea4a4c49714139d57422560487855711aebf64.tar.gz scummvm-rg350-29ea4a4c49714139d57422560487855711aebf64.tar.bz2 scummvm-rg350-29ea4a4c49714139d57422560487855711aebf64.zip |
Missed one
svn-id: r5957
-rw-r--r-- | simon/vga.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/simon/vga.cpp b/simon/vga.cpp index 455435a469..3c55ffd3fb 100644 --- a/simon/vga.cpp +++ b/simon/vga.cpp @@ -115,12 +115,8 @@ void SimonState::run_vga_script() if (_continous_vgascript) { if ((void *)_vc_ptr != (void *)&vc_get_out_of_code) { -// if (_vga_cur_sprite_id==62 && _vga_cur_file_id==68 || -// _vga_cur_sprite_id==1 && _vga_cur_file_id==2) { - fprintf(_dump_file, "%.5d %.5X: %5d %4d ", _vga_tick_counter, _vc_ptr - _cur_vga_file_1, - _vga_cur_sprite_id, _vga_cur_file_id); + fprintf(_dump_file, "%.5d %.5X: %5d %4d ", _vga_tick_counter, _vc_ptr - _cur_vga_file_1, _vga_cur_sprite_id, _vga_cur_file_id); dump_video_script(_vc_ptr, true); -// } } } |