aboutsummaryrefslogtreecommitdiff
path: root/simon
diff options
context:
space:
mode:
authorTravis Howell2005-11-20 10:26:14 +0000
committerTravis Howell2005-11-20 10:26:14 +0000
commit5274d89e410cac91c6698082614829f82356e7f0 (patch)
tree0912c73f416e2eb096a845fc098e3fede5d118df /simon
parente5f590a2acd8a14306777f7e4e8574e4d79f54ef (diff)
downloadscummvm-rg350-5274d89e410cac91c6698082614829f82356e7f0.tar.gz
scummvm-rg350-5274d89e410cac91c6698082614829f82356e7f0.tar.bz2
scummvm-rg350-5274d89e410cac91c6698082614829f82356e7f0.zip
Strings play back is DOS specific.
svn-id: r19678
Diffstat (limited to 'simon')
-rw-r--r--simon/vga.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/simon/vga.cpp b/simon/vga.cpp
index b9693d7972..153d10be9c 100644
--- a/simon/vga.cpp
+++ b/simon/vga.cpp
@@ -1780,10 +1780,7 @@ void SimonEngine::vc52_playSound() {
if (getGameType() == GType_FF) {
uint16 pan = vc_read_next_word();
uint16 vol = vc_read_next_word();
- debug(0, "STUB: vc52_playSound: snd %d pan %d vol %d", sound, pan, vol);
-
_sound->playSoundData(_curSfxFile, sound, pan, vol, ambient);
-
} else if (getGameType() == GType_SIMON2) {
if (ambient) {
_sound->playAmbient(sound);
@@ -1792,7 +1789,7 @@ void SimonEngine::vc52_playSound() {
}
} else if (getFeatures() & GF_TALKIE) {
_sound->playEffects(sound);
- } else {
+ } else if (getGameId() == GID_SIMON1DOS) {
playSting(sound);
}
}