aboutsummaryrefslogtreecommitdiff
path: root/simon/vga.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'simon/vga.cpp')
-rw-r--r--simon/vga.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/simon/vga.cpp b/simon/vga.cpp
index 770f429b84..a0c322842f 100644
--- a/simon/vga.cpp
+++ b/simon/vga.cpp
@@ -1604,13 +1604,13 @@ void SimonState::vc_52()
uint16 a = vc_read_next_word();
if (!(_game & GAME_SIMON2)) {
- playSound(a);
+ playEffects(a);
} else {
if (a >= 0x8000) {
a = -a;
playAmbient(a);
} else {
- playSound(a);
+ playEffects(a);
}
}
}