aboutsummaryrefslogtreecommitdiff
path: root/engines/drascula/drascula.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2008-06-10 18:54:32 +0000
committerFilippos Karapetis2008-06-10 18:54:32 +0000
commit930ba6d02dcec38c065f5a8da56cdd74db8e5862 (patch)
tree61813622958a29acbb1df6ca63bf22ee46bcacb8 /engines/drascula/drascula.cpp
parentaac3270de1b5aa504353cbc4d9b3b743721c455d (diff)
downloadscummvm-rg350-930ba6d02dcec38c065f5a8da56cdd74db8e5862.tar.gz
scummvm-rg350-930ba6d02dcec38c065f5a8da56cdd74db8e5862.tar.bz2
scummvm-rg350-930ba6d02dcec38c065f5a8da56cdd74db8e5862.zip
drawSurface1 -> bgSurface
svn-id: r32644
Diffstat (limited to 'engines/drascula/drascula.cpp')
-rw-r--r--engines/drascula/drascula.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/drascula/drascula.cpp b/engines/drascula/drascula.cpp
index e9a613b2c2..dd5f0968ff 100644
--- a/engines/drascula/drascula.cpp
+++ b/engines/drascula/drascula.cpp
@@ -226,7 +226,7 @@ int DrasculaEngine::go() {
loadPic(96, frontSurface, COMPLETE_PAL);
loadPic("pts.alg", drawSurface2);
} else if (currentChapter == 3) {
- loadPic("aux13.alg", drawSurface1, COMPLETE_PAL);
+ loadPic("aux13.alg", bgSurface, COMPLETE_PAL);
loadPic(96, frontSurface);
loadPic(97, extraSurface);
loadPic(99, backSurface);
@@ -529,7 +529,7 @@ bool DrasculaEngine::runCurrentChapter() {
if (!confirmExit())
return false;
} else if (currentChapter == 6 && key == Common::KEYCODE_0 && roomNumber == 61) {
- loadPic("alcbar.alg", drawSurface1, 255);
+ loadPic("alcbar.alg", bgSurface, 255);
}
if (leftMouseButton != 0 || rightMouseButton != 0 || key != 0)
@@ -753,7 +753,7 @@ void DrasculaEngine::hipo_sin_nadie(int counter){
do {
counter--;
- copyBackground(0, 0, 0, 0, 320, 200, drawSurface1, screenSurface);
+ copyBackground(0, 0, 0, 0, 320, 200, bgSurface, screenSurface);
if (currentChapter == 3)
updateScreen(0, 0, 0, y, 320, 200, screenSurface);
else
@@ -777,7 +777,7 @@ void DrasculaEngine::hipo_sin_nadie(int counter){
}
} while (counter > 0);
- copyBackground(0, 0, 0, 0, 320, 200, drawSurface1, screenSurface);
+ copyBackground(0, 0, 0, 0, 320, 200, bgSurface, screenSurface);
updateScreen();
}