aboutsummaryrefslogtreecommitdiff
path: root/engines/cruise/sound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cruise/sound.cpp')
-rw-r--r--engines/cruise/sound.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/cruise/sound.cpp b/engines/cruise/sound.cpp
index 45bf186174..db8dc67e5a 100644
--- a/engines/cruise/sound.cpp
+++ b/engines/cruise/sound.cpp
@@ -808,10 +808,10 @@ void PCSound::musicLoop(bool v) {
_player->setLooping(v);
}
-void PCSound::startNote(int channel, int volume, int speed) {
+void PCSound::startNote(int channel, int volume, int freq) {
warning("TODO: startNote");
// _soundDriver->setVolume(channel, volume);
- _soundDriver->setChannelFrequency(channel, speed);
+ _soundDriver->setChannelFrequency(channel, freq);
}
void PCSound::setVolume(int volume) {