aboutsummaryrefslogtreecommitdiff
path: root/sword2/driver
diff options
context:
space:
mode:
authorTorbjörn Andersson2003-08-28 06:14:46 +0000
committerTorbjörn Andersson2003-08-28 06:14:46 +0000
commit76df5a2733d7fd4b1d1e78d800649aa4c3e1e773 (patch)
tree9d98cabcf246cac72d33fc1fe267e5fa358d0c1f /sword2/driver
parentaab8d69078000632146ac592983da6de7778515c (diff)
downloadscummvm-rg350-76df5a2733d7fd4b1d1e78d800649aa4c3e1e773.tar.gz
scummvm-rg350-76df5a2733d7fd4b1d1e78d800649aa4c3e1e773.tar.bz2
scummvm-rg350-76df5a2733d7fd4b1d1e78d800649aa4c3e1e773.zip
Cleanup
svn-id: r9885
Diffstat (limited to 'sword2/driver')
-rw-r--r--sword2/driver/_mouse.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/sword2/driver/_mouse.cpp b/sword2/driver/_mouse.cpp
index 71e79ee0bc..1bef8ae0cf 100644
--- a/sword2/driver/_mouse.cpp
+++ b/sword2/driver/_mouse.cpp
@@ -309,7 +309,7 @@ void DrawMouse(void) {
if (mouseAnim)
DecompressMouse(_mouseData, mouseSprite, mouseAnim->mousew, mouseAnim->mouseh, mouse_width);
- g_sword2->_system->set_mouse_cursor(_mouseData, mouse_width, mouse_height, hotspot_x, hotspot_y);
+ g_system->set_mouse_cursor(_mouseData, mouse_width, mouse_height, hotspot_x, hotspot_y);
}
@@ -379,12 +379,12 @@ int32 SetMouseAnim(uint8 *ma, int32 size, int32 mouseFlash) {
AnimateMouse();
DrawMouse();
- g_sword2->_system->show_mouse(true);
+ g_system->show_mouse(true);
} else {
if (luggageAnim)
DrawMouse();
else
- g_sword2->_system->show_mouse(false);
+ g_system->show_mouse(false);
}
return RD_OK;
}
@@ -406,12 +406,12 @@ int32 SetLuggageAnim(uint8 *ma, int32 size) {
AnimateMouse();
DrawMouse();
- g_sword2->_system->show_mouse(true);
+ g_system->show_mouse(true);
} else {
if (mouseAnim)
DrawMouse();
else
- g_sword2->_system->show_mouse(false);
+ g_system->show_mouse(false);
}
return RD_OK;
}