Skip to content

Commit

Permalink
XEEN: Correct Training welcome voice sample playback
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Mar 16, 2018
1 parent 2ff96c0 commit d348b5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/xeen/locations.cpp
Expand Up @@ -83,7 +83,7 @@ int BaseLocation::show() {
drawAnim(true);

// Play the welcome speech
sound.playVoice(_vocName, 1);
sound.playVoice(_vocName);

do {
wait();
Expand Down Expand Up @@ -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) {
Expand Down

0 comments on commit d348b5c

Please sign in to comment.