svn-id: r19782
This commit is contained in:
Chris Apers 2005-12-11 19:52:39 +00:00
parent 6fc01e2c47
commit 0ba6f84374
2 changed files with 2 additions and 16 deletions

View File

@ -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;

View File

@ -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