[Scummvm-git-logs] scummvm master -> 64191781b512b6a7c553cacf612bbf9e4e4851e9

csnover csnover at users.noreply.github.com
Sat Oct 7 20:09:45 CEST 2017


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
64191781b5 SCUMM: Fix compilation on systems without USE_RGB_COLOR


Commit: 64191781b512b6a7c553cacf612bbf9e4e4851e9
    https://github.com/scummvm/scummvm/commit/64191781b512b6a7c553cacf612bbf9e4e4851e9
Author: Colin Snover (github.com at zetafleet.com)
Date: 2017-10-07T13:09:07-05:00

Commit Message:
SCUMM: Fix compilation on systems without USE_RGB_COLOR

Changed paths:
    engines/scumm/scumm.cpp


diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp
index c06b9de..767e85d 100644
--- a/engines/scumm/scumm.cpp
+++ b/engines/scumm/scumm.cpp
@@ -1288,7 +1288,7 @@ Common::Error ScummEngine::init() {
 #else
 			if (_game.platform == Common::kPlatformFMTowns && _game.version == 3) {
 				warning("Starting game without the required 16bit color support.\nYou may experience color glitches");
-				initGraphics(screenWidth, screenHeight, (screenWidth > 320));
+				initGraphics(screenWidth, screenHeight);
 			} else {
 				return Common::Error(Common::kUnsupportedColorMode, "16bit color support is required for this game");
 			}





More information about the Scummvm-git-logs mailing list