aboutsummaryrefslogtreecommitdiff
path: root/engines/tsage/ringworld/ringworld_dialogs.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2012-01-01 16:12:07 +1100
committerPaul Gilbert2012-01-01 16:37:24 +1100
commita837bb409a0235e4b459bfbdfb66684c8b5d33e3 (patch)
treea75efbe399acec8743e6be1c4d442535861c8226 /engines/tsage/ringworld/ringworld_dialogs.cpp
parentb59b703f721d4a52b1e73084294d44976419fead (diff)
downloadscummvm-rg350-a837bb409a0235e4b459bfbdfb66684c8b5d33e3.tar.gz
scummvm-rg350-a837bb409a0235e4b459bfbdfb66684c8b5d33e3.tar.bz2
scummvm-rg350-a837bb409a0235e4b459bfbdfb66684c8b5d33e3.zip
TSAGE: Revert buggy implementation of dirty rects
This reverts commit f69dfba21a5d4be8cc60a20a0dd0628717fa5373.
Diffstat (limited to 'engines/tsage/ringworld/ringworld_dialogs.cpp')
-rw-r--r--engines/tsage/ringworld/ringworld_dialogs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/tsage/ringworld/ringworld_dialogs.cpp b/engines/tsage/ringworld/ringworld_dialogs.cpp
index 0561a27055..233cbe5c4c 100644
--- a/engines/tsage/ringworld/ringworld_dialogs.cpp
+++ b/engines/tsage/ringworld/ringworld_dialogs.cpp
@@ -183,7 +183,7 @@ void RightClickDialog::execute() {
}
g_system->delayMillis(10);
- GLOBALS._screenSurface.copyToScreen();
+ g_system->updateScreen();
}
_gfxManager.deactivate();
@@ -394,7 +394,7 @@ void InventoryDialog::execute() {
Event event;
while (!g_globals->_events.getEvent(event) && !g_vm->shouldQuit()) {
g_system->delayMillis(10);
- GLOBALS._screenSurface.copyToScreen();
+ g_system->updateScreen();
}
if (g_vm->shouldQuit())
break;