diff options
Diffstat (limited to 'engines/simon/vga.cpp')
| -rw-r--r-- | engines/simon/vga.cpp | 6 | 
1 files changed, 2 insertions, 4 deletions
| diff --git a/engines/simon/vga.cpp b/engines/simon/vga.cpp index e6731a076e..b4f7490b45 100644 --- a/engines/simon/vga.cpp +++ b/engines/simon/vga.cpp @@ -1781,11 +1781,9 @@ void SimonEngine::vc36_setWindowImage() {  	uint16 vga_res = vcReadNextWord();  	uint16 windowNum = vcReadNextWord(); -	if (getGameType() == GType_FF) { -		// TODO -	} else if (getGameType() == GType_SIMON2) { +	if (getGameType() == GType_SIMON2) {  		set_video_mode_internal(windowNum, vga_res); -	} else { +	} else if (getGameType() == GType_SIMON1) {  		if (windowNum == 16) {  			_copyPartialMode = 2;  		} else { | 
