aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/PalmOS/Src/base_mouse.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backends/platform/PalmOS/Src/base_mouse.cpp')
-rw-r--r--backends/platform/PalmOS/Src/base_mouse.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/platform/PalmOS/Src/base_mouse.cpp b/backends/platform/PalmOS/Src/base_mouse.cpp
index 7af080e09d..93a1fd2209 100644
--- a/backends/platform/PalmOS/Src/base_mouse.cpp
+++ b/backends/platform/PalmOS/Src/base_mouse.cpp
@@ -54,10 +54,10 @@ void OSystem_PalmBase::setMouseCursor(const byte *buf, uint w, uint h, int hotsp
if (_mouseCurState.w != w || _mouseCurState.h != h) {
_mouseCurState.w = w;
_mouseCurState.h = h;
-
+
if (_mouseDataP)
free(_mouseDataP);
-
+
if (_mouseBackupP)
free(_mouseBackupP);
@@ -95,7 +95,7 @@ void OSystem_PalmBase::simulate_mouse(Common::Event &event, Int8 iHoriz, Int8 iV
x = (x >= _screenWidth ) ? _screenWidth - 1 : x;
y = (y < 0 ) ? 0 : y;
y = (y >= _screenHeight ) ? _screenHeight - 1 : y;
-
+
*xr = x;
*yr = y;
}