[Scummvm-cvs-logs] CVS: scummvm/backends/PalmOS/Src palm.cpp,1.19,1.20

Max Horn fingolfin at users.sourceforge.net
Fri Aug 1 17:37:10 CEST 2003


Update of /cvsroot/scummvm/scummvm/backends/PalmOS/Src
In directory sc8-pr-cvs1:/tmp/cvs-serv16859/backends/PalmOS/Src

Modified Files:
	palm.cpp 
Log Message:
removed OSystem::set_mouse_pos (I hope I didn't break any backends, but if I did it should be trivial to get them working again)

Index: palm.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/PalmOS/Src/palm.cpp,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- palm.cpp	23 Jul 2003 20:17:07 -0000	1.19
+++ palm.cpp	2 Aug 2003 00:36:36 -0000	1.20
@@ -603,6 +603,7 @@
 	event->event_code = EVENT_MOUSEMOVE;
 	event->mouse.x = x;
 	event->mouse.y = y;
+	set_mouse_pos(event->mouse.x, event->mouse.y);
 }
 
 static void getCoordinates(EventPtr event, Boolean wide, Coord *x, Coord *y) {
@@ -811,6 +812,7 @@
 			event->event_code = EVENT_MOUSEMOVE;
 			event->mouse.x = x;
 			event->mouse.y = y - _decaly;
+			set_mouse_pos(event->mouse.x, event->mouse.y);
 			return true;
 
 		case penDownEvent:





More information about the Scummvm-git-logs mailing list