aboutsummaryrefslogtreecommitdiff
path: root/sky/intro.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sky/intro.cpp')
-rw-r--r--sky/intro.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/sky/intro.cpp b/sky/intro.cpp
index a9628905f5..2850663755 100644
--- a/sky/intro.cpp
+++ b/sky/intro.cpp
@@ -792,7 +792,7 @@ bool Intro::floppyScrollFlirt(void) {
vgaPtr += nrToDo;
} while (nrToDo == 255);
}
- _system->copy_rect(scrollPos, GAME_SCREEN_WIDTH, 0, 0, GAME_SCREEN_WIDTH, GAME_SCREEN_HEIGHT);
+ _system->copyRectToScreen(scrollPos, GAME_SCREEN_WIDTH, 0, 0, GAME_SCREEN_WIDTH, GAME_SCREEN_HEIGHT);
_system->updateScreen();
#ifndef _WIN32_WCE
if (!escDelay(40))
@@ -868,7 +868,7 @@ void Intro::showTextBuf(void) {
saveBuf += width;
}
screenBuf = _skyScreen->giveCurrent() + y * GAME_SCREEN_WIDTH + x;
- _system->copy_rect(screenBuf, GAME_SCREEN_WIDTH, x, y, width, height);
+ _system->copyRectToScreen(screenBuf, GAME_SCREEN_WIDTH, x, y, width, height);
}
void Intro::restoreScreen(void) {
@@ -884,7 +884,7 @@ void Intro::restoreScreen(void) {
screenBuf += GAME_SCREEN_WIDTH;
saveBuf += width;
}
- _system->copy_rect(_saveBuf + sizeof(dataFileHeader), width, x, y, width, height);
+ _system->copyRectToScreen(_saveBuf + sizeof(dataFileHeader), width, x, y, width, height);
}
bool Intro::escDelay(uint32 msecs) {