mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-20 16:59:06 +00:00
XEEN: Correct Training welcome voice sample playback
This commit is contained in:
parent
2ff96c0277
commit
d348b5cb2f
@ -83,7 +83,7 @@ int BaseLocation::show() {
|
||||
drawAnim(true);
|
||||
|
||||
// Play the welcome speech
|
||||
sound.playVoice(_vocName, 1);
|
||||
sound.playVoice(_vocName);
|
||||
|
||||
do {
|
||||
wait();
|
||||
@ -988,7 +988,7 @@ TrainingLocation::TrainingLocation() : BaseLocation(TRAINING) {
|
||||
addButton(Common::Rect(281, 108, 305, 128), Common::KEYCODE_ESCAPE, &_icons1);
|
||||
addButton(Common::Rect(242, 108, 266, 128), Common::KEYCODE_t, &_icons1);
|
||||
|
||||
_vocName = _isDarkCc ? "training.voc" : "youtrn1.voc";
|
||||
_vocName = _isDarkCc ? "youtrn1.voc" : "training.voc";
|
||||
}
|
||||
|
||||
Common::String TrainingLocation::createLocationText(Character &ch) {
|
||||
|
Loading…
Reference in New Issue
Block a user