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

Strangerke arnaud.boutonne at gmail.com
Sun Feb 20 10:39:53 CET 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:
bb51d090a8 HUGO: Fix a bug in setCursorPal() introduced by recent palette modifications


Commit: bb51d090a83c4c038050b8efe5ab98ff900974c2
    https://github.com/scummvm/scummvm/commit/bb51d090a83c4c038050b8efe5ab98ff900974c2
Author: strangerke (arnaud.boutonne at gmail.com)
Date: 2011-02-20T01:39:32-08:00

Commit Message:
HUGO: Fix a bug in setCursorPal() introduced by recent palette modifications

Changed paths:
    engines/hugo/display.cpp



diff --git a/engines/hugo/display.cpp b/engines/hugo/display.cpp
index a2962ff..da821c5 100644
--- a/engines/hugo/display.cpp
+++ b/engines/hugo/display.cpp
@@ -149,7 +149,7 @@ void Screen::setCursorPal() {
 		pal[3 * i + 2] = _curPalette[4 * i + 2];
 	}
 
-	CursorMan.replaceCursorPalette(_curPalette, 0, _paletteSize / 4);
+	CursorMan.replaceCursorPalette(pal, 0, _paletteSize / 4);
 }
 
 /**






More information about the Scummvm-git-logs mailing list