diff options
author | Jody Northup | 2009-06-16 09:15:06 +0000 |
---|---|---|
committer | Jody Northup | 2009-06-16 09:15:06 +0000 |
commit | db9cfc6f962790a270b357c3d47a5dc0e15a37b0 (patch) | |
tree | 051c22ce24f70ec5a231e1838a9b0e3f466c6872 /backends | |
parent | cb56169a2770c25ce27256db339353011158998f (diff) | |
download | scummvm-rg350-db9cfc6f962790a270b357c3d47a5dc0e15a37b0.tar.gz scummvm-rg350-db9cfc6f962790a270b357c3d47a5dc0e15a37b0.tar.bz2 scummvm-rg350-db9cfc6f962790a270b357c3d47a5dc0e15a37b0.zip |
Corrected oversight in earlier ifdef simplification which leads to compilation failure if ENABLE_16BIT is not defined.
svn-id: r41581
Diffstat (limited to 'backends')
-rw-r--r-- | backends/platform/sdl/sdl.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/backends/platform/sdl/sdl.h b/backends/platform/sdl/sdl.h index b788022d57..074a55069d 100644 --- a/backends/platform/sdl/sdl.h +++ b/backends/platform/sdl/sdl.h @@ -133,11 +133,9 @@ public: virtual void warpMouse(int x, int y); // overloaded by CE backend (FIXME) // Set the bitmap that's used when drawing the cursor. -#ifdef ENABLE_16BIT virtual void setMouseCursor(const byte *buf, uint w, uint h, int hotspot_x, int hotspot_y, uint32 keycolor, int cursorTargetScale); // overloaded by CE backend (FIXME) +#ifdef ENABLE_16BIT virtual void setCursorFormat(Graphics::PixelFormat format); -#else - virtual void setMouseCursor(const byte *buf, uint w, uint h, int hotspot_x, int hotspot_y, byte keycolor, int cursorTargetScale); // overloaded by CE backend (FIXME) #endif // Set colors of cursor palette |