diff options
author | Chris Apers | 2006-01-23 19:42:38 +0000 |
---|---|---|
committer | Chris Apers | 2006-01-23 19:42:38 +0000 |
commit | a857a97e347382f2caac967fab453ace3e189e35 (patch) | |
tree | d96e1e715fc53c68787864215acfbe72671ef06a /backends/PalmOS | |
parent | d36be21fe400b9b38998308c04c57ca46d595106 (diff) | |
download | scummvm-rg350-a857a97e347382f2caac967fab453ace3e189e35.tar.gz scummvm-rg350-a857a97e347382f2caac967fab453ace3e189e35.tar.bz2 scummvm-rg350-a857a97e347382f2caac967fab453ace3e189e35.zip |
- Zodiac backend is now based on OS5Ex class
- Moved some methods and members to OS5 class
svn-id: r20150
Diffstat (limited to 'backends/PalmOS')
-rwxr-xr-x | backends/PalmOS/Src/be_zodiac.cpp | 4 | ||||
-rwxr-xr-x | backends/PalmOS/Src/be_zodiac.h | 11 |
2 files changed, 5 insertions, 10 deletions
diff --git a/backends/PalmOS/Src/be_zodiac.cpp b/backends/PalmOS/Src/be_zodiac.cpp index e0f7da05a4..e7bebcbe78 100755 --- a/backends/PalmOS/Src/be_zodiac.cpp +++ b/backends/PalmOS/Src/be_zodiac.cpp @@ -1,7 +1,7 @@ /* ScummVM - Scumm Interpreter * Copyright (C) 2001 Ludvig Strigeus * Copyright (C) 2001-2006 The ScummVM project - * Copyright (C) 2002-2005 Chris Apers - PalmOS Backend + * Copyright (C) 2002-2006 Chris Apers - PalmOS Backend * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -23,7 +23,7 @@ #include "be_zodiac.h" -OSystem_PalmZodiac::OSystem_PalmZodiac() : OSystem_PalmOS5() { +OSystem_PalmZodiac::OSystem_PalmZodiac() : OSystem_PalmOS5Ex() { _gfxH = NULL; _overlayP = NULL; _palmScreenP = NULL; diff --git a/backends/PalmOS/Src/be_zodiac.h b/backends/PalmOS/Src/be_zodiac.h index 54cb263b2c..5812eaa66b 100755 --- a/backends/PalmOS/Src/be_zodiac.h +++ b/backends/PalmOS/Src/be_zodiac.h @@ -1,7 +1,7 @@ /* ScummVM - Scumm Interpreter * Copyright (C) 2001 Ludvig Strigeus * Copyright (C) 2001-2006 The ScummVM project - * Copyright (C) 2002-2005 Chris Apers - PalmOS Backend + * Copyright (C) 2002-2006 Chris Apers - PalmOS Backend * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -25,11 +25,11 @@ #define BE_ZODIAC_H #include <tapwave.h> -#include "be_os5.h" +#include "be_os5ex.h" #define MIN_OFFSET 20 -class OSystem_PalmZodiac : public OSystem_PalmOS5 { +class OSystem_PalmZodiac : public OSystem_PalmOS5Ex { private: enum { kRatioNone = 0, @@ -51,7 +51,6 @@ private: TwGfxPointType _srcPos; TwGfxRectType _srcRect, _dstRect; TwGfxBitmapType _srcBmp; - Boolean _stretched; void int_initBackend(); void int_setShakePos(int shakeOffset); @@ -79,11 +78,7 @@ public: void updateScreen(); bool grabRawScreen(Graphics::Surface *surf); - - void setMouseCursor(const byte *buf, uint w, uint h, int hotspotX, int hotspotY, byte keycolor, int cursorTargetScale); - void showOverlay(); - void hideOverlay(); void clearOverlay(); void grabOverlay(OverlayColor *buf, int pitch); void copyRectToOverlay(const OverlayColor *buf, int pitch, int x, int y, int w, int h); |