aboutsummaryrefslogtreecommitdiff
path: root/engines/drascula
diff options
context:
space:
mode:
authorThierry Crozat2016-04-11 19:57:57 +0100
committerThierry Crozat2016-04-11 19:58:29 +0100
commitcb4c6e547d07c8188c528312f1f0a1526d57813d (patch)
tree1c180a150a297b07b0c6bbf8cfb59d15c8381812 /engines/drascula
parentf65b31437b81ab41a39142e626808083d0b96017 (diff)
downloadscummvm-rg350-cb4c6e547d07c8188c528312f1f0a1526d57813d.tar.gz
scummvm-rg350-cb4c6e547d07c8188c528312f1f0a1526d57813d.tar.bz2
scummvm-rg350-cb4c6e547d07c8188c528312f1f0a1526d57813d.zip
DRASCULA: Fix regression in subtitle display in Spanish version
This code was committed by mistake in the previous commit.
Diffstat (limited to 'engines/drascula')
-rw-r--r--engines/drascula/drascula.cpp6
-rw-r--r--engines/drascula/graphics.cpp2
2 files changed, 4 insertions, 4 deletions
diff --git a/engines/drascula/drascula.cpp b/engines/drascula/drascula.cpp
index 6852bdf176..b821e7dbbe 100644
--- a/engines/drascula/drascula.cpp
+++ b/engines/drascula/drascula.cpp
@@ -365,13 +365,13 @@ Common::Error DrasculaEngine::run() {
for (i = 0; i < 25; i++)
memcpy(crosshairCursor + i * 40, tableSurface + 225 + (56 + i) * 320, 40);
- loadPic(97, extraSurface);
- //if (_lang == kSpanish)
- // loadPic(974, extraSurface);
+ if (_lang == kSpanish)
+ loadPic(974, tableSurface);
if (currentChapter != 2) {
loadPic(99, cursorSurface);
loadPic(99, backSurface);
+ loadPic(97, extraSurface);
}
memset(iconName, 0, sizeof(iconName));
diff --git a/engines/drascula/graphics.cpp b/engines/drascula/graphics.cpp
index 8a20561adc..4ed949cc99 100644
--- a/engines/drascula/graphics.cpp
+++ b/engines/drascula/graphics.cpp
@@ -241,7 +241,7 @@ void DrasculaEngine::print_abc(const char *said, int screenX, int screenY) {
} // for
copyRect(letterX, letterY, screenX, screenY,
- CHAR_WIDTH, CHAR_HEIGHT, _lang == kSpanish ? extraSurface : tableSurface, screenSurface);
+ CHAR_WIDTH, CHAR_HEIGHT, tableSurface, screenSurface);
screenX = screenX + CHAR_WIDTH;
if (screenX > 317) {