aboutsummaryrefslogtreecommitdiff
path: root/queen
diff options
context:
space:
mode:
authorMax Horn2004-02-28 12:58:13 +0000
committerMax Horn2004-02-28 12:58:13 +0000
commitc6752cccf5186fb04c97e2bb4a64c52fc9447073 (patch)
tree91f3f0264b1542a839cc3504b52603a8034547cb /queen
parent56102a1d02925abbe9fc0504751de1a270a34ff3 (diff)
downloadscummvm-rg350-c6752cccf5186fb04c97e2bb4a64c52fc9447073.tar.gz
scummvm-rg350-c6752cccf5186fb04c97e2bb4a64c52fc9447073.tar.bz2
scummvm-rg350-c6752cccf5186fb04c97e2bb4a64c52fc9447073.zip
renamed more OSystem methods to follow our naming scheme; renamed NewGuiColor to OverlayColor; fixed some calls to error() in the SDL backend
svn-id: r13087
Diffstat (limited to 'queen')
-rw-r--r--queen/display.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/queen/display.cpp b/queen/display.cpp
index 3795c2f998..b002573d8d 100644
--- a/queen/display.cpp
+++ b/queen/display.cpp
@@ -156,9 +156,9 @@ void Display::palSet(const uint8 *pal, int start, int end, bool updateScreen) {
debug(9, "Display::palSet(%d, %d)", start, end);
uint8 tempPal[256 * 4];
palConvert(tempPal, pal, start, end);
- _system->set_palette(tempPal + start * 4, start, end - start + 1);
+ _system->setPalette(tempPal + start * 4, start, end - start + 1);
if (updateScreen) {
- _system->update_screen();
+ _system->updateScreen();
_vm->input()->delay(20);
}
}
@@ -617,7 +617,7 @@ void Display::update(bool dynalum, int16 dynaX, int16 dynaY) {
}
debug(7, "Display::update() - Dirtyblocks blit (%d)", count);
}
- _system->update_screen();
+ _system->updateScreen();
}
void Display::setupPanel() {
@@ -958,7 +958,7 @@ void Display::blankScreenEffect1() {
++y;
}
_system->copy_rect(buf, 32, x, y, 32, 32);
- _system->update_screen();
+ _system->updateScreen();
_vm->input()->delay(10);
}
}
@@ -991,7 +991,7 @@ void Display::blankScreenEffect2() {
p += SCREEN_W;
}
_system->copy_rect(buf, SCREEN_W, x, y, 2, 2);
- _system->update_screen();
+ _system->updateScreen();
_vm->input()->delay(10);
}
}
@@ -1020,7 +1020,7 @@ void Display::blankScreenEffect3() {
++i;
_system->copy_rect(buf, SCREEN_W, x, y, 2, 2);
}
- _system->update_screen();
+ _system->updateScreen();
_vm->input()->delay(10);
}
}