diff options
author | Paul Gilbert | 2018-04-09 21:48:59 -0400 |
---|---|---|
committer | Paul Gilbert | 2018-04-09 21:48:59 -0400 |
commit | 80fa7481ff954ebcba1447ab670d9962e0497a27 (patch) | |
tree | 3ea136250fda67d9bab8427f3590f85106a17097 | |
parent | efb1f9219cf26835c7e5a7ab2e32a7fadeb31a96 (diff) | |
download | scummvm-rg350-80fa7481ff954ebcba1447ab670d9962e0497a27.tar.gz scummvm-rg350-80fa7481ff954ebcba1447ab670d9962e0497a27.tar.bz2 scummvm-rg350-80fa7481ff954ebcba1447ab670d9962e0497a27.zip |
XEEN: Fix subtitle cutscene text for entering Darkside towns
-rw-r--r-- | engines/xeen/locations.cpp | 5 |
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) { |