aboutsummaryrefslogtreecommitdiff
path: root/queen/graphics.cpp
diff options
context:
space:
mode:
authorGregory Montoir2004-01-09 15:14:15 +0000
committerGregory Montoir2004-01-09 15:14:15 +0000
commit657333aaf0cce4439d4a0a14d8f86029b6e23ac8 (patch)
tree02499ee351babf125b96e92f97c6c196cf621a8b /queen/graphics.cpp
parent722de1e04a85c0050fa54ef3de76b88b858d3ca9 (diff)
downloadscummvm-rg350-657333aaf0cce4439d4a0a14d8f86029b6e23ac8.tar.gz
scummvm-rg350-657333aaf0cce4439d4a0a14d8f86029b6e23ac8.tar.bz2
scummvm-rg350-657333aaf0cce4439d4a0a14d8f86029b6e23ac8.zip
fix mouse pointer glitch occuring when exiting Debugger
svn-id: r12281
Diffstat (limited to 'queen/graphics.cpp')
-rw-r--r--queen/graphics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/queen/graphics.cpp b/queen/graphics.cpp
index 14c56a00d8..e474c6b6c9 100644
--- a/queen/graphics.cpp
+++ b/queen/graphics.cpp
@@ -207,7 +207,7 @@ void Graphics::unpackControlBank() {
void Graphics::setupMouseCursor() {
BobFrame *bf = _vm->bankMan()->fetchFrame(1);
- _vm->display()->setMouseCursor(bf->data, bf->width, bf->height, bf->xhotspot, bf->yhotspot);
+ _vm->display()->setMouseCursor(bf->data, bf->width, bf->height);
}