diff options
Diffstat (limited to 'backends/PalmOS/Src/be_base.h')
-rwxr-xr-x | backends/PalmOS/Src/be_base.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/backends/PalmOS/Src/be_base.h b/backends/PalmOS/Src/be_base.h index 57d9689e32..e11e0aa445 100755 --- a/backends/PalmOS/Src/be_base.h +++ b/backends/PalmOS/Src/be_base.h @@ -94,7 +94,7 @@ protected: kKeyAny = 1 << 31 }; enum { - MAX_MOUSE_W = 40, // should be 80x80 with 640x480 games ? + MAX_MOUSE_W = 40, MAX_MOUSE_H = 40 }; struct MousePos { @@ -151,6 +151,7 @@ protected: int _samplesPerSec; public: + OSystem_PalmBase(); void initBackend(); /* @@ -180,7 +181,7 @@ public: */ const GraphicsMode *getSupportedGraphicsModes() const; int getGraphicsMode() const; - int getDefaultGraphicsMode() const; + virtual int getDefaultGraphicsMode() const; virtual bool setGraphicsMode(int mode); virtual bool grabRawScreen(Graphics::Surface *surf) { return false; } |