mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-09 04:16:34 +00:00
XEEN: Fix cutscene subtitles for Ellinger's Tower
This commit is contained in:
parent
5425604669
commit
90f2bb6a15
@ -1320,8 +1320,13 @@ int ReaperCutscene::show() {
|
||||
sprites1.draw(0, party._isNight ? 3 : 2);
|
||||
}
|
||||
|
||||
_subtitles.setLine(_keyFound ? 5 : 6);
|
||||
sound.playVoice(_keyFound ? "reaper12.voc" : "reaper14.voc");
|
||||
if (!_ccNum) {
|
||||
_subtitles.setLine(_keyFound ? 5 : 6);
|
||||
sound.playVoice(_keyFound ? "reaper12.voc" : "reaper14.voc");
|
||||
} else if (_keyFound) {
|
||||
_subtitles.setLine(2);
|
||||
sound.playVoice("howdid1.voc");
|
||||
}
|
||||
|
||||
do {
|
||||
events.updateGameCounter();
|
||||
@ -1345,11 +1350,13 @@ int ReaperCutscene::show() {
|
||||
windows[0].update();
|
||||
WAIT(7);
|
||||
|
||||
sound.playVoice(_keyFound ? "reaper12.voc" : "reaper14.voc");
|
||||
if (_keyFound)
|
||||
if (_keyFound) {
|
||||
sound.playVoice(_ccNum ? "goin1.voc" : "reaper13.voc");
|
||||
else
|
||||
} else {
|
||||
if (_ccNum)
|
||||
_subtitles.setLine(3);
|
||||
sound.playVoice(_ccNum ? "needkey1.voc" : "reaper15.voc");
|
||||
}
|
||||
|
||||
do {
|
||||
events.updateGameCounter();
|
||||
|
Loading…
x
Reference in New Issue
Block a user