aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/draw_v1.cpp
diff options
context:
space:
mode:
authorSven Hesse2010-09-30 13:04:43 +0000
committerSven Hesse2010-09-30 13:04:43 +0000
commit947540c0891afb42d9753fe2d05bdf4b5753d0ff (patch)
treebf4ca843db20dd02ca01763091fac8bf7601e864 /engines/gob/draw_v1.cpp
parent1d17a4157f068a988fd30e821c62cd2148e1a5f8 (diff)
downloadscummvm-rg350-947540c0891afb42d9753fe2d05bdf4b5753d0ff.tar.gz
scummvm-rg350-947540c0891afb42d9753fe2d05bdf4b5753d0ff.tar.bz2
scummvm-rg350-947540c0891afb42d9753fe2d05bdf4b5753d0ff.zip
GOB: Fix 16bit cursors
svn-id: r52952
Diffstat (limited to 'engines/gob/draw_v1.cpp')
-rw-r--r--engines/gob/draw_v1.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/draw_v1.cpp b/engines/gob/draw_v1.cpp
index f768ca29c2..6496229282 100644
--- a/engines/gob/draw_v1.cpp
+++ b/engines/gob/draw_v1.cpp
@@ -125,7 +125,7 @@ void Draw_v1::animateCursor(int16 cursor) {
(cursorIndex + 1) * _cursorWidth - 1,
_cursorHeight - 1, 0, 0);
CursorMan.replaceCursor(_scummvmCursor->getData(),
- _cursorWidth, _cursorHeight, hotspotX, hotspotY, 0);
+ _cursorWidth, _cursorHeight, hotspotX, hotspotY, 0, 1, &_vm->getPixelFormat());
if (_frontSurface != _backSurface) {
_showCursor = 3;