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

dreammaster dreammaster at scummvm.org
Sun May 8 11:10:18 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:
d4e4148a39 TSAGE: Bugfix for restoring savegames saved when palette effects are active


Commit: d4e4148a39928e577d588b7cbc26abab453ccbab
    https://github.com/scummvm/scummvm/commit/d4e4148a39928e577d588b7cbc26abab453ccbab
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2011-05-08T02:08:35-07:00

Commit Message:
TSAGE: Bugfix for restoring savegames saved when palette effects are active

Changed paths:
    engines/tsage/globals.cpp



diff --git a/engines/tsage/globals.cpp b/engines/tsage/globals.cpp
index 74e9575..c6e1344 100644
--- a/engines/tsage/globals.cpp
+++ b/engines/tsage/globals.cpp
@@ -44,7 +44,8 @@ static SavedObject *classFactoryProc(const Common::String &className) {
 	if (className == "ObjectMover3") return new ObjectMover3();
 	if (className == "PlayerMover") return new PlayerMover();
 	if (className == "SceneObjectWrapper") return new SceneObjectWrapper();
-
+	if (className == "PaletteRotation") return new PaletteRotation();
+	if (className == "PaletteFader") return new PaletteFader();
 	return NULL;
 }
 






More information about the Scummvm-git-logs mailing list