aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen
diff options
context:
space:
mode:
authorPaul Gilbert2018-04-09 21:48:59 -0400
committerPaul Gilbert2018-04-09 21:48:59 -0400
commit80fa7481ff954ebcba1447ab670d9962e0497a27 (patch)
tree3ea136250fda67d9bab8427f3590f85106a17097 /engines/xeen
parentefb1f9219cf26835c7e5a7ab2e32a7fadeb31a96 (diff)
downloadscummvm-rg350-80fa7481ff954ebcba1447ab670d9962e0497a27.tar.gz
scummvm-rg350-80fa7481ff954ebcba1447ab670d9962e0497a27.tar.bz2
scummvm-rg350-80fa7481ff954ebcba1447ab670d9962e0497a27.zip
XEEN: Fix subtitle cutscene text for entering Darkside towns
Diffstat (limited to 'engines/xeen')
-rw-r--r--engines/xeen/locations.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/xeen/locations.cpp b/engines/xeen/locations.cpp
index bae474412e..dedd9bc964 100644
--- a/engines/xeen/locations.cpp
+++ b/engines/xeen/locations.cpp
@@ -1880,7 +1880,10 @@ int DwarfCutscene::show() {
screen.blitFrom(savedBg);
sprites2.draw(0, 0);
windows[0].update();
- _subtitles.setLine(_ccNum ? 0 : 4);
+ if (_ccNum)
+ _subtitles.setLine(_keyFound ? 7 : 8);
+ else
+ _subtitles.setLine(4);
for (int idx = 0; idx < (_ccNum ? 2 : 3); ++idx) {
switch (idx) {