aboutsummaryrefslogtreecommitdiff
path: root/kyra/screen.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2005-11-27 00:12:07 +0000
committerJohannes Schickel2005-11-27 00:12:07 +0000
commit46d02cd9def7ab76a3c223b4845ff70b33139b01 (patch)
treeb3e9217374e8f2a0fa2876438897b8880e045dcd /kyra/screen.cpp
parente7ccaa866e226b74cfd52172535d6dcb7c5b5bdb (diff)
downloadscummvm-rg350-46d02cd9def7ab76a3c223b4845ff70b33139b01.tar.gz
scummvm-rg350-46d02cd9def7ab76a3c223b4845ff70b33139b01.tar.bz2
scummvm-rg350-46d02cd9def7ab76a3c223b4845ff70b33139b01.zip
Implemented cmd_runSceneAnimUntilDone and cmd_displayWSAFrameOnHidPage.
Also fixed cursor hotspot position. svn-id: r19707
Diffstat (limited to 'kyra/screen.cpp')
-rw-r--r--kyra/screen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kyra/screen.cpp b/kyra/screen.cpp
index e28f178712..d0813d5bec 100644
--- a/kyra/screen.cpp
+++ b/kyra/screen.cpp
@@ -1621,7 +1621,7 @@ void Screen::setMouseCursor(int x, int y, byte *shape) {
_system->showMouse(false);
copyRegionToBuffer(8, 0, 0, mouseWidth, mouseHeight, cursor);
- _system->setMouseCursor(cursor, mouseWidth, mouseHeight, 0, 0, 0);
+ _system->setMouseCursor(cursor, mouseWidth, mouseHeight, x, y, 0);
_system->showMouse(true);
free(cursor);