diff options
author | strangerke | 2011-05-28 07:21:38 +0200 |
---|---|---|
committer | strangerke | 2011-05-28 07:21:38 +0200 |
commit | a7580aee6674fb67647f24bd851b2bd2b66c9bf8 (patch) | |
tree | 3661b462f76930676bfc43777a958eba3a241c94 /engines | |
parent | 595728c8cae665fff075bd215a8794d0ad9a9275 (diff) | |
download | scummvm-rg350-a7580aee6674fb67647f24bd851b2bd2b66c9bf8.tar.gz scummvm-rg350-a7580aee6674fb67647f24bd851b2bd2b66c9bf8.tar.bz2 scummvm-rg350-a7580aee6674fb67647f24bd851b2bd2b66c9bf8.zip |
TSAGE: Add specific initialization for ringworld CD, fixing the color of the buttons
Diffstat (limited to 'engines')
-rw-r--r-- | engines/tsage/globals.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/engines/tsage/globals.cpp b/engines/tsage/globals.cpp index e38fb21237..e629396501 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; |