diff options
Diffstat (limited to 'backends/PalmOS/Src')
-rwxr-xr-x | backends/PalmOS/Src/be_zodiac.cpp | 13 | ||||
-rwxr-xr-x | backends/PalmOS/Src/be_zodiac.h | 5 |
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 |