[Scummvm-cvs-logs] CVS: scummvm/backends/dc dc.h,1.36,1.37 display.cpp,1.32,1.33

Marcus Comstedt marcus_c at users.sourceforge.net
Sun Apr 3 11:03:12 CEST 2005


Update of /cvsroot/scummvm/scummvm/backends/dc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1248

Modified Files:
	dc.h display.cpp 
Log Message:
Added new cursorTargetScale parameter to setMouseCursor().

Index: dc.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/dc/dc.h,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -d -r1.36 -r1.37
--- dc.h	9 Mar 2005 23:07:24 -0000	1.36
+++ dc.h	3 Apr 2005 18:02:27 -0000	1.37
@@ -85,7 +85,7 @@
   void warpMouse(int x, int y);
 
   // Set the bitmap that's used when drawing the cursor.
-  void setMouseCursor(const byte *buf, uint w, uint h, int hotspot_x, int hotspot_y, byte keycolor);
+  void setMouseCursor(const byte *buf, uint w, uint h, int hotspot_x, int hotspot_y, byte keycolor, int cursorTargetScale);
   
   // Shaking is used in SCUMM. Set current shake position.
   void setShakePos(int shake_pos);

Index: display.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/dc/display.cpp,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -d -r1.32 -r1.33
--- display.cpp	2 Apr 2005 15:45:50 -0000	1.32
+++ display.cpp	3 Apr 2005 18:02:27 -0000	1.33
@@ -224,7 +224,8 @@
 }
 
 void OSystem_Dreamcast::setMouseCursor(const byte *buf, uint w, uint h,
-								   int hotspot_x, int hotspot_y, byte keycolor)
+				       int hotspot_x, int hotspot_y,
+				       byte keycolor, int cursorTargetScale)
 {
   _ms_cur_w = w;
   _ms_cur_h = h;





More information about the Scummvm-git-logs mailing list