aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/wince
diff options
context:
space:
mode:
authorKostas Nakos2009-09-28 07:21:56 +0000
committerKostas Nakos2009-09-28 07:21:56 +0000
commita13ba4cee7c57fa55e5704d1bf3039c1e90e3954 (patch)
tree470a555801981ad823bee9e0b72ab7a0d57a5746 /backends/platform/wince
parent994b74a19351143dfcf41e9d7d64174861842e75 (diff)
downloadscummvm-rg350-a13ba4cee7c57fa55e5704d1bf3039c1e90e3954.tar.gz
scummvm-rg350-a13ba4cee7c57fa55e5704d1bf3039c1e90e3954.tar.bz2
scummvm-rg350-a13ba4cee7c57fa55e5704d1bf3039c1e90e3954.zip
overload newer incarnation of setmousecursor
svn-id: r44437
Diffstat (limited to 'backends/platform/wince')
-rw-r--r--backends/platform/wince/wince-sdl.cpp2
-rw-r--r--backends/platform/wince/wince-sdl.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/wince/wince-sdl.cpp b/backends/platform/wince/wince-sdl.cpp
index 70dc19edf9..efc09958a2 100644
--- a/backends/platform/wince/wince-sdl.cpp
+++ b/backends/platform/wince/wince-sdl.cpp
@@ -1913,7 +1913,7 @@ void OSystem_WINCE3::copyRectToScreen(const byte *src, int pitch, int x, int y,
SDL_UnlockSurface(_screen);
}
-void OSystem_WINCE3::setMouseCursor(const byte *buf, uint w, uint h, int hotspot_x, int hotspot_y, byte keycolor, int cursorTargetScale) {
+void OSystem_WINCE3::setMouseCursor(const byte *buf, uint w, uint h, int hotspot_x, int hotspot_y, uint32 keycolor, int cursorTargetScale, const Graphics::PixelFormat *format) {
undrawMouse();
if (w == 0 || h == 0)
diff --git a/backends/platform/wince/wince-sdl.h b/backends/platform/wince/wince-sdl.h
index 7b4d0f2b25..6900d4fb79 100644
--- a/backends/platform/wince/wince-sdl.h
+++ b/backends/platform/wince/wince-sdl.h
@@ -91,7 +91,7 @@ public:
// Overloaded from SDL_Common (FIXME)
- void setMouseCursor(const byte *buf, uint w, uint h, int hotspot_x, int hotspot_y, byte keycolor, int cursorTargetScale); // overloaded by CE backend
+ void setMouseCursor(const byte *buf, uint w, uint h, int hotspot_x, int hotspot_y, uint32 keycolor, int cursorTargetScale, const Graphics::PixelFormat *format); // overloaded by CE backend
void undrawMouse();
void blitCursor();
bool showMouse(bool visible);