diff options
author | Travis Howell | 2003-12-02 05:53:32 +0000 |
---|---|---|
committer | Travis Howell | 2003-12-02 05:53:32 +0000 |
commit | bde45d4335063b12aa5c3de6aaf4951c031662a6 (patch) | |
tree | b7c864d32b294701b7350bfbd188927c46818d0f | |
parent | 528fd63a0754e06b3f5c52159d5423ff96a501b5 (diff) | |
download | scummvm-rg350-bde45d4335063b12aa5c3de6aaf4951c031662a6.tar.gz scummvm-rg350-bde45d4335063b12aa5c3de6aaf4951c031662a6.tar.bz2 scummvm-rg350-bde45d4335063b12aa5c3de6aaf4951c031662a6.zip |
This screen update causes delay and doesn't seem to be required.
Remove old debug message
svn-id: r11455
-rw-r--r-- | simon/simon.cpp | 1 | ||||
-rw-r--r-- | simon/vga.cpp | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp index 16220b38b0..b5fb49ef95 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -4659,7 +4659,6 @@ void SimonEngine::fadeUpPalette() { } _system->set_palette(_video_buf_1, 0, _video_num_pal_colors); - _system->update_screen(); delay(5); } while (!done); } diff --git a/simon/vga.cpp b/simon/vga.cpp index d645f6d28e..a1785bbb47 100644 --- a/simon/vga.cpp +++ b/simon/vga.cpp @@ -899,7 +899,6 @@ void SimonEngine::vc_10_draw() { if (_game & GF_SIMON2 && state.e & 0x4 && _bit_array[10] & 0x800) { state.surf_addr = state.surf2_addr; state.surf_pitch = state.surf2_pitch; - debug(1,"vc_10_draw: (state.e&0x4)"); } if (state.e & 0x8) { |