diff options
author | Johannes Schickel | 2012-06-16 03:10:43 +0200 |
---|---|---|
committer | Johannes Schickel | 2012-06-16 03:28:42 +0200 |
commit | d27d951d0b079a301ea1c6a3731bc1fc83234cff (patch) | |
tree | 89ba167aa2060ef72e2d33aa3536380852926f5d /backends/modular-backend.h | |
parent | 58bf8090cc760cd3c02724ae4479494d3b3a2cc1 (diff) | |
download | scummvm-rg350-d27d951d0b079a301ea1c6a3731bc1fc83234cff.tar.gz scummvm-rg350-d27d951d0b079a301ea1c6a3731bc1fc83234cff.tar.bz2 scummvm-rg350-d27d951d0b079a301ea1c6a3731bc1fc83234cff.zip |
BACKENDS: Make OSystem::setMouseCursor take a "const void *" buffer.
This is mainly for consistency with OSystem::copyRectToScreen.
Diffstat (limited to 'backends/modular-backend.h')
-rw-r--r-- | backends/modular-backend.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/modular-backend.h b/backends/modular-backend.h index fd4aca2e4d..400102428b 100644 --- a/backends/modular-backend.h +++ b/backends/modular-backend.h @@ -100,7 +100,7 @@ public: virtual bool showMouse(bool visible); virtual void warpMouse(int x, int y); - virtual void setMouseCursor(const byte *buf, uint w, uint h, int hotspotX, int hotspotY, uint32 keycolor, bool dontScale = false, const Graphics::PixelFormat *format = NULL); + virtual void setMouseCursor(const void *buf, uint w, uint h, int hotspotX, int hotspotY, uint32 keycolor, bool dontScale = false, const Graphics::PixelFormat *format = NULL); virtual void setCursorPalette(const byte *colors, uint start, uint num); //@} |