diff options
author | Paul Gilbert | 2018-03-15 21:29:10 -0400 |
---|---|---|
committer | Paul Gilbert | 2018-03-15 21:29:10 -0400 |
commit | d348b5cb2fa16c68c659b319b2173de6f96670cf (patch) | |
tree | 3d1cc041ec5965e06f7b942068f7dc7da563cb9d /engines | |
parent | 2ff96c0277adac5768478c5616600fdb42ac3b3d (diff) | |
download | scummvm-rg350-d348b5cb2fa16c68c659b319b2173de6f96670cf.tar.gz scummvm-rg350-d348b5cb2fa16c68c659b319b2173de6f96670cf.tar.bz2 scummvm-rg350-d348b5cb2fa16c68c659b319b2173de6f96670cf.zip |
XEEN: Correct Training welcome voice sample playback
Diffstat (limited to 'engines')
-rw-r--r-- | engines/xeen/locations.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/xeen/locations.cpp b/engines/xeen/locations.cpp index 0376cdb8f1..2690bf1ebc 100644 --- a/engines/xeen/locations.cpp +++ b/engines/xeen/locations.cpp @@ -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) { |