diff options
| author | Einar Johan Trøan Sømåen | 2012-06-21 18:49:30 +0200 | 
|---|---|---|
| committer | Einar Johan Trøan Sømåen | 2012-06-21 18:49:30 +0200 | 
| commit | 7d702c95954e94d0ae29c6f973765ccda03d4d51 (patch) | |
| tree | d68074b28a92a71c0659069b7ab4a81c676803b6 | |
| parent | 8c463aa58c6b61c4336a0ff45a02578fad804c05 (diff) | |
| download | scummvm-rg350-7d702c95954e94d0ae29c6f973765ccda03d4d51.tar.gz scummvm-rg350-7d702c95954e94d0ae29c6f973765ccda03d4d51.tar.bz2 scummvm-rg350-7d702c95954e94d0ae29c6f973765ccda03d4d51.zip | |
WINTERMUTE: Use the fullscreen-setting from the launcher.
| -rw-r--r-- | engines/wintermute/wintermute.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/engines/wintermute/wintermute.cpp b/engines/wintermute/wintermute.cpp index 44faec5c3a..d2edf6d1f3 100644 --- a/engines/wintermute/wintermute.cpp +++ b/engines/wintermute/wintermute.cpp @@ -142,7 +142,7 @@ int WinterMuteEngine::init() {  	if (!_game) return 1;  	CBPlatform::Initialize(_game, 0, NULL); -	bool windowedMode = true; +	bool windowedMode = !ConfMan.getBool("fullscreen");  	// parse command line  	char *SaveGame = NULL; | 
