aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorChris Apers2005-12-11 19:52:39 +0000
committerChris Apers2005-12-11 19:52:39 +0000
commit0ba6f84374d4c9df5946e918e625f5b8d224ff06 (patch)
treec65aa6b1363c8f989b2b6b7572c67d857048d3c6 /backends
parent6fc01e2c47f72fd1d1503b5390c53fd788a68eef (diff)
downloadscummvm-rg350-0ba6f84374d4c9df5946e918e625f5b8d224ff06.tar.gz
scummvm-rg350-0ba6f84374d4c9df5946e918e625f5b8d224ff06.tar.bz2
scummvm-rg350-0ba6f84374d4c9df5946e918e625f5b8d224ff06.zip
Cleanup
svn-id: r19782
Diffstat (limited to 'backends')
-rwxr-xr-xbackends/PalmOS/Src/be_zodiac.cpp13
-rwxr-xr-xbackends/PalmOS/Src/be_zodiac.h5
2 files changed, 2 insertions, 16 deletions
diff --git a/backends/PalmOS/Src/be_zodiac.cpp b/backends/PalmOS/Src/be_zodiac.cpp
index d492ad8bea..8f8f45e47f 100755
--- a/backends/PalmOS/Src/be_zodiac.cpp
+++ b/backends/PalmOS/Src/be_zodiac.cpp
@@ -37,19 +37,8 @@ void OSystem_PalmZodiac::int_initBackend() {
_keyMouse.bitLeft = keyBitRockerLeft;
_keyMouse.bitRight = keyBitRockerRight;
_keyMouse.bitButLeft= keyBitRockerCenter;
+ _keyMouse.hasMore = true;
}
-/*
-uint32 OSystem_PalmZodiac::getMillis() {
- return TwGetMicroSeconds();
-}
-
-void OSystem_PalmZodiac::delayMillis(uint msecs) {
- Int32 delay = (SysTicksPerSecond() * msecs) / 1000;
-
- if (delay > 0)
- SysTaskDelay(delay);
-}
-*/
void OSystem_PalmZodiac::calc_rect(Boolean fullscreen) {
Int32 w, h;
diff --git a/backends/PalmOS/Src/be_zodiac.h b/backends/PalmOS/Src/be_zodiac.h
index 4e122d5871..8f17507594 100755
--- a/backends/PalmOS/Src/be_zodiac.h
+++ b/backends/PalmOS/Src/be_zodiac.h
@@ -24,8 +24,8 @@
#ifndef BE_ZODIAC_H
#define BE_ZODIAC_H
-#include "be_os5.h"
#include <tapwave.h>
+#include "be_os5.h"
#define MIN_OFFSET 20
@@ -89,9 +89,6 @@ public:
void copyRectToOverlay(const OverlayColor *buf, int pitch, int x, int y, int w, int h);
OverlayColor RGBToColor(uint8 r, uint8 g, uint8 b);
void colorToRGB(OverlayColor color, uint8 &r, uint8 &g, uint8 &b);
-// uint32 getMillis();
-// void delayMillis(uint msecs);
-
};
#endif