aboutsummaryrefslogtreecommitdiff
path: root/engines/drascula/rooms.cpp
diff options
context:
space:
mode:
authorThierry Crozat2016-04-16 16:46:38 +0100
committerThierry Crozat2016-04-16 18:59:27 +0100
commiteef83714322b98fbe02249478ad66b88fd4c1fe2 (patch)
treeb61aab7837ba7910beca084387a8e7ad202eb66d /engines/drascula/rooms.cpp
parentaa95183b93dcfaa74e0e732259c87e9b9d39d518 (diff)
downloadscummvm-rg350-eef83714322b98fbe02249478ad66b88fd4c1fe2.tar.gz
scummvm-rg350-eef83714322b98fbe02249478ad66b88fd4c1fe2.tar.bz2
scummvm-rg350-eef83714322b98fbe02249478ad66b88fd4c1fe2.zip
DRASCULA: Swap extraSurface and tableSurface use in chapter 6 for Spanish version
This simplifies the code and bring it closer to the original source code. This should help if we need to debug issues in the future.
Diffstat (limited to 'engines/drascula/rooms.cpp')
-rw-r--r--engines/drascula/rooms.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/drascula/rooms.cpp b/engines/drascula/rooms.cpp
index acfc528b0c..57d4517295 100644
--- a/engines/drascula/rooms.cpp
+++ b/engines/drascula/rooms.cpp
@@ -1501,7 +1501,7 @@ void DrasculaEngine::update_102() {
if (actorFrames[kFramePendulum] <= 4)
pendulumSurface = drawSurface3;
else if (actorFrames[kFramePendulum] <= 11)
- pendulumSurface = _lang == kSpanish ? tableSurface : extraSurface;
+ pendulumSurface = extraSurface;
else
pendulumSurface = frontSurface;