aboutsummaryrefslogtreecommitdiff
path: root/common/system.h
diff options
context:
space:
mode:
authorJody Northup2009-06-16 09:15:06 +0000
committerJody Northup2009-06-16 09:15:06 +0000
commitdb9cfc6f962790a270b357c3d47a5dc0e15a37b0 (patch)
tree051c22ce24f70ec5a231e1838a9b0e3f466c6872 /common/system.h
parentcb56169a2770c25ce27256db339353011158998f (diff)
downloadscummvm-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 'common/system.h')
-rw-r--r--common/system.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/common/system.h b/common/system.h
index b6e78474ca..7df4a124e3 100644
--- a/common/system.h
+++ b/common/system.h
@@ -719,11 +719,9 @@ public:
* @param keycolor transparency color index
* @param cursorTargetScale scale factor which cursor is designed for
*/
-#ifdef ENABLE_16BIT
virtual void setMouseCursor(const byte *buf, uint w, uint h, int hotspotX, int hotspotY, uint32 keycolor = 0xFFFFFFFF, int cursorTargetScale = 1) = 0;
+#ifdef ENABLE_16BIT
virtual void setCursorFormat(Graphics::PixelFormat format) = 0;
-#else
- virtual void setMouseCursor(const byte *buf, uint w, uint h, int hotspotX, int hotspotY, byte keycolor = 255, int cursorTargetScale = 1) = 0;
#endif