diff options
author | Travis Howell | 2002-12-22 09:26:42 +0000 |
---|---|---|
committer | Travis Howell | 2002-12-22 09:26:42 +0000 |
commit | 2e66c05f477f0693867173fdc74cf55fc142687f (patch) | |
tree | eac1680ad52957fd923dc20cf8cd0111b351c685 | |
parent | a3dae7bc3cd74b39b5039aa45c8107b94d86ca11 (diff) | |
download | scummvm-rg350-2e66c05f477f0693867173fdc74cf55fc142687f.tar.gz scummvm-rg350-2e66c05f477f0693867173fdc74cf55fc142687f.tar.bz2 scummvm-rg350-2e66c05f477f0693867173fdc74cf55fc142687f.zip |
Remove the fixme
svn-id: r6058
-rw-r--r-- | simon/vga.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/simon/vga.cpp b/simon/vga.cpp index 9da26b11ae..7d5b271d37 100644 --- a/simon/vga.cpp +++ b/simon/vga.cpp @@ -1781,16 +1781,13 @@ void SimonState::vc_62_palette_thing() if (!_video_var_3) { if (_game & GAME_SIMON2) { - //FIXME The screen should be cleared elsewhere. - dx_clear_surfaces(_video_palette_mode == 4 ? 134 : 200); if (_midi_unk2 != 0xffff) { playMusic(999, _midi_unk2); } } - return; - } + } else + _video_var_3 = true; - _video_var_3 = true; _video_num_pal_colors = 256; if (_video_palette_mode == 4) _video_num_pal_colors = 208; |