aboutsummaryrefslogtreecommitdiff
path: root/scumm/smush
diff options
context:
space:
mode:
authorMax Horn2004-03-28 16:30:50 +0000
committerMax Horn2004-03-28 16:30:50 +0000
commit14378cb56e18237cf1b8b5e088995e0b91f47410 (patch)
treee646deabd966699f0538880f74883255df2810bb /scumm/smush
parentefb5f3777a2aa664c6bc5e7fb5ab3f2b92da6ca8 (diff)
downloadscummvm-rg350-14378cb56e18237cf1b8b5e088995e0b91f47410.tar.gz
scummvm-rg350-14378cb56e18237cf1b8b5e088995e0b91f47410.tar.bz2
scummvm-rg350-14378cb56e18237cf1b8b5e088995e0b91f47410.zip
Renamed more OSystem methods
svn-id: r13410
Diffstat (limited to 'scumm/smush')
-rw-r--r--scumm/smush/smush_player.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/smush/smush_player.cpp b/scumm/smush/smush_player.cpp
index fd6d0fea3f..6ebbfbe4ae 100644
--- a/scumm/smush/smush_player.cpp
+++ b/scumm/smush/smush_player.cpp
@@ -966,7 +966,7 @@ void SmushPlayer::updateScreen() {
#endif
uint32 end_time, start_time = _vm->_system->get_msecs();
- _vm->_system->copy_rect(_dst, _width, 0, 0, _width, _height);
+ _vm->_system->copyRectToScreen(_dst, _width, 0, 0, _width, _height);
_updateNeeded = true;
end_time = _vm->_system->get_msecs();
debug(4, "Smush stats: updateScreen( %03d )", end_time - start_time);
@@ -1026,7 +1026,7 @@ void SmushPlayer::play(const char *filename, const char *directory, int32 offset
_updateNeeded = false;
// Hide mouse
- bool oldMouseState = _vm->_system->show_mouse(false);
+ bool oldMouseState = _vm->_system->showMouse(false);
// Load the video
setupAnim(filename, directory);
@@ -1065,7 +1065,7 @@ void SmushPlayer::play(const char *filename, const char *directory, int32 offset
deinit();
// Reset mouse state
- _vm->_system->show_mouse(oldMouseState);
+ _vm->_system->showMouse(oldMouseState);
}
} // End of namespace Scumm