aboutsummaryrefslogtreecommitdiff
path: root/simon/simon.cpp
diff options
context:
space:
mode:
authorMax Horn2004-03-28 16:30:50 +0000
committerMax Horn2004-03-28 16:30:50 +0000
commit14378cb56e18237cf1b8b5e088995e0b91f47410 (patch)
treee646deabd966699f0538880f74883255df2810bb /simon/simon.cpp
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 'simon/simon.cpp')
-rw-r--r--simon/simon.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp
index 04bd9b8c10..bfd39a72b9 100644
--- a/simon/simon.cpp
+++ b/simon/simon.cpp
@@ -1548,11 +1548,11 @@ void SimonEngine::handle_mouse_moved() {
uint x;
if (_lock_counter) {
- _system->show_mouse(false);
+ _system->showMouse(false);
return;
}
- _system->show_mouse(true);
+ _system->showMouse(true);
pollMouseXY();
if (_mouse_x >= 32768)
@@ -3764,9 +3764,9 @@ static const byte _simon2_cursors[10][256] = {
void SimonEngine::draw_mouse_pointer() {
if (_game & GF_SIMON2)
- _system->set_mouse_cursor(_simon2_cursors[_mouse_cursor], 16, 16, 7, 7);
+ _system->setMouseCursor(_simon2_cursors[_mouse_cursor], 16, 16, 7, 7);
else
- _system->set_mouse_cursor(_simon1_cursor, 16, 16, 0, 0);
+ _system->setMouseCursor(_simon1_cursor, 16, 16, 0, 0);
}
// Thanks to Stuart Caie for providing the original
@@ -4434,7 +4434,7 @@ void SimonEngine::dx_copy_rgn_from_3_to_2(uint b, uint r, uint y, uint x) {
void SimonEngine::dx_clear_surfaces(uint num_lines) {
memset(_sdl_buf_attached, 0, num_lines * 320);
- _system->copy_rect(_sdl_buf_attached, 320, 0, 0, 320, 200);
+ _system->copyRectToScreen(_sdl_buf_attached, 320, 0, 0, 320, 200);
if (_dx_use_3_or_4_for_lock) {
memset(_sdl_buf, 0, num_lines * 320);
@@ -4485,7 +4485,7 @@ void SimonEngine::dx_update_screen_and_palette() {
}
}
- _system->copy_rect(_sdl_buf_attached, 320, 0, 0, 320, 200);
+ _system->copyRectToScreen(_sdl_buf_attached, 320, 0, 0, 320, 200);
_system->updateScreen();
memcpy(_sdl_buf_attached, _sdl_buf, 320 * 200);