[Scummvm-cvs-logs] scummvm master -> a7580aee6674fb67647f24bd851b2bd2b66c9bf8

Strangerke arnaud.boutonne at gmail.com
Sat May 28 07:22:40 CEST 2011


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:
a7580aee66 TSAGE: Add specific initialization for ringworld CD, fixing the color of the buttons


Commit: a7580aee6674fb67647f24bd851b2bd2b66c9bf8
    https://github.com/scummvm/scummvm/commit/a7580aee6674fb67647f24bd851b2bd2b66c9bf8
Author: strangerke (arnaud.boutonne at gmail.com)
Date: 2011-05-27T22:21:38-07:00

Commit Message:
TSAGE: Add specific initialization for ringworld CD, fixing the color of the buttons

Changed paths:
    engines/tsage/globals.cpp



diff --git a/engines/tsage/globals.cpp b/engines/tsage/globals.cpp
index e38fb21..e629396 100644
--- a/engines/tsage/globals.cpp
+++ b/engines/tsage/globals.cpp
@@ -64,6 +64,13 @@ Globals::Globals() :
 		_fontColors.background = 0;
 		_fontColors.foreground = 0;
 		_dialogCenter.y = 80;
+	} else if ((_vm->getGameID() == GType_Ringworld) &&  (_vm->getFeatures() & GF_CD)) {
+		_gfxFontNumber = 50;
+		_gfxColors.background = 53;
+		_gfxColors.foreground = 0;
+		_fontColors.background = 51;
+		_fontColors.foreground = 54;
+		warning("TODO: Check the 3 additional colors");
 	} else {
 		_gfxFontNumber = 50;
 		_gfxColors.background = 53;






More information about the Scummvm-git-logs mailing list