diff options
| author | Max Horn | 2004-03-28 16:30:50 +0000 |
|---|---|---|
| committer | Max Horn | 2004-03-28 16:30:50 +0000 |
| commit | 14378cb56e18237cf1b8b5e088995e0b91f47410 (patch) | |
| tree | e646deabd966699f0538880f74883255df2810bb /sword2/driver/_mouse.cpp | |
| parent | efb5f3777a2aa664c6bc5e7fb5ab3f2b92da6ca8 (diff) | |
| download | scummvm-rg350-14378cb56e18237cf1b8b5e088995e0b91f47410.tar.gz scummvm-rg350-14378cb56e18237cf1b8b5e088995e0b91f47410.tar.bz2 scummvm-rg350-14378cb56e18237cf1b8b5e088995e0b91f47410.zip | |
Renamed more OSystem methods
svn-id: r13410
Diffstat (limited to 'sword2/driver/_mouse.cpp')
| -rw-r--r-- | sword2/driver/_mouse.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sword2/driver/_mouse.cpp b/sword2/driver/_mouse.cpp index 8cdb378aef..af0055dbca 100644 --- a/sword2/driver/_mouse.cpp +++ b/sword2/driver/_mouse.cpp @@ -168,7 +168,7 @@ void Graphics::drawMouse(void) { if (_mouseAnim) decompressMouse(_mouseData, _mouseSprite, _mouseAnim->mousew, _mouseAnim->mouseh, mouse_width); - _vm->_system->set_mouse_cursor(_mouseData, mouse_width, mouse_height, hotspot_x, hotspot_y); + _vm->_system->setMouseCursor(_mouseData, mouse_width, mouse_height, hotspot_x, hotspot_y); } /** @@ -222,12 +222,12 @@ int32 Graphics::setMouseAnim(uint8 *ma, int32 size, int32 mouseFlash) { animateMouse(); drawMouse(); - _vm->_system->show_mouse(true); + _vm->_system->showMouse(true); } else { if (_luggageAnim) drawMouse(); else - _vm->_system->show_mouse(false); + _vm->_system->showMouse(false); } return RD_OK; @@ -257,12 +257,12 @@ int32 Graphics::setLuggageAnim(uint8 *ma, int32 size) { animateMouse(); drawMouse(); - _vm->_system->show_mouse(true); + _vm->_system->showMouse(true); } else { if (_mouseAnim) drawMouse(); else - _vm->_system->show_mouse(false); + _vm->_system->showMouse(false); } return RD_OK; |
