[Scummvm-cvs-logs] CVS: scummvm/sword1 control.cpp,1.43,1.44 credits.cpp,1.4,1.5 sword1.cpp,1.71,1.72

Chris Apers chrilith at users.sourceforge.net
Fri Dec 10 07:11:01 CET 2004


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

Modified Files:
	control.cpp credits.cpp sword1.cpp 
Log Message:
PalmOS stuffs

Index: control.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sword1/control.cpp,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -d -r1.43 -r1.44
--- control.cpp	5 Dec 2004 17:42:19 -0000	1.43
+++ control.cpp	10 Dec 2004 15:10:08 -0000	1.44
@@ -1009,7 +1009,7 @@
 			case OSystem::EVENT_LBUTTONDOWN:
 				_mouseDown = true;
 				_mouseState |= BS1L_BUTTON_DOWN;
-#ifdef _WIN32_WCE
+#if defined(_WIN32_WCE) || defined(__PALM_OS__)
 				_mouseX = event.mouse.x;
 				_mouseY = event.mouse.y;
 #endif

Index: credits.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sword1/credits.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- credits.cpp	5 Dec 2004 17:42:19 -0000	1.4
+++ credits.cpp	10 Dec 2004 15:10:09 -0000	1.5
@@ -20,7 +20,7 @@
  */
 
 #include "stdafx.h"
-#include "credits.h"
+#include "sword1/credits.h"
 #include "screen.h"
 #include "common/file.h"
 #include "sound/mixer.h"

Index: sword1.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sword1/sword1.cpp,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -d -r1.71 -r1.72
--- sword1.cpp	9 Dec 2004 15:06:48 -0000	1.71
+++ sword1.cpp	10 Dec 2004 15:10:10 -0000	1.72
@@ -449,14 +449,14 @@
 				break;
 			case OSystem::EVENT_LBUTTONDOWN:
 				_mouseState |= BS1L_BUTTON_DOWN;
-#ifdef _WIN32_WCE
+#if defined(_WIN32_WCE) || defined(__PALM_OS__)
 				_mouseX = event.mouse.x;
 				_mouseY = event.mouse.y;
 #endif
 				break;
 			case OSystem::EVENT_RBUTTONDOWN:
 				_mouseState |= BS1R_BUTTON_DOWN;
-#ifdef _WIN32_WCE
+#if defined(_WIN32_WCE) || defined(__PALM_OS__)
 				_mouseX = event.mouse.x;
 				_mouseY = event.mouse.y;
 #endif





More information about the Scummvm-git-logs mailing list