[Scummvm-cvs-logs] scummvm master -> 3a3c1eec5374a7d85a18ee55cab0891cd250529b

Strangerke Strangerke at scummvm.org
Sat Feb 25 10:22:16 CET 2012


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:
3a3c1eec53 TSAGE: R2R - Fix bug #3492133, error in palette index used


Commit: 3a3c1eec5374a7d85a18ee55cab0891cd250529b
    https://github.com/scummvm/scummvm/commit/3a3c1eec5374a7d85a18ee55cab0891cd250529b
Author: Strangerke (strangerke at scummvm.org)
Date: 2012-02-25T01:21:40-08:00

Commit Message:
TSAGE: R2R - Fix bug #3492133, error in palette index used

Changed paths:
    engines/tsage/ringworld2/ringworld2_scenes1.cpp



diff --git a/engines/tsage/ringworld2/ringworld2_scenes1.cpp b/engines/tsage/ringworld2/ringworld2_scenes1.cpp
index 23a9eb2..e849e71 100644
--- a/engines/tsage/ringworld2/ringworld2_scenes1.cpp
+++ b/engines/tsage/ringworld2/ringworld2_scenes1.cpp
@@ -11432,9 +11432,9 @@ void Scene1850::postInit(SceneObjectList *OwnerList) {
 void Scene1850::remove() {
 	g_globals->_scenePalette.loadPalette(0);
 
-	R2_GLOBALS._scenePalette._palette[771] = 255;
-	R2_GLOBALS._scenePalette._palette[772] = 255;
-	R2_GLOBALS._scenePalette._palette[773] = 255;
+	R2_GLOBALS._scenePalette._palette[765] = 255;
+	R2_GLOBALS._scenePalette._palette[766] = 255;
+	R2_GLOBALS._scenePalette._palette[767] = 255;
 	
 	SceneExt::remove();
 }






More information about the Scummvm-git-logs mailing list