[Scummvm-cvs-logs] CVS: scummvm/common system.h,1.87,1.88

Eugene Sandulenko sev at users.sourceforge.net
Sat Feb 19 18:05:31 CET 2005


Update of /cvsroot/scummvm/scummvm/common
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28825/common

Modified Files:
	system.h 
Log Message:
Implement OSystem method disableCursorPalette(bool disable) as mentioned
in patch #1013937 (OSystem layer with bigger resolution).


Index: system.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/system.h,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -d -r1.87 -r1.88
--- system.h	17 Feb 2005 23:00:58 -0000	1.87
+++ system.h	20 Feb 2005 02:04:45 -0000	1.88
@@ -294,6 +294,18 @@
 	virtual void setCursorPalette(const byte *colors, uint start, uint num) {};
 
 	/**
+	 * Disable or enable cursor palette.
+	 *
+	 * Backends which implement it should have kFeatureCursorHasPalette flag set
+	 *
+	 * @param disable  True to disable, false to enable.
+	 *
+	 * @see setPalette
+	 * @see kFeatureCursorHasPalette
+	 */
+	virtual void disableCursorPalette(bool disable) {};
+
+	/**
 	 * Blit a bitmap to the virtual screen.
 	 * The real screen will not immediately be updated to reflect the changes.
 	 * Client code has to to call updateScreen to ensure any changes are





More information about the Scummvm-git-logs mailing list