aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/cine/main_loop.cpp1
-rw-r--r--engines/cine/sound.cpp5
-rw-r--r--engines/cine/sound.h2
3 files changed, 0 insertions, 8 deletions
diff --git a/engines/cine/main_loop.cpp b/engines/cine/main_loop.cpp
index c3eb78edb5..c822f1cabd 100644
--- a/engines/cine/main_loop.cpp
+++ b/engines/cine/main_loop.cpp
@@ -217,7 +217,6 @@ void manageEvents() {
g_system->delayMillis(20);
} while (g_system->getMillis() < nextFrame);
- g_sound->update();
mouseData.left = mouseLeft;
mouseData.right = mouseRight;
}
diff --git a/engines/cine/sound.cpp b/engines/cine/sound.cpp
index b66ce5aba4..97336b1c1a 100644
--- a/engines/cine/sound.cpp
+++ b/engines/cine/sound.cpp
@@ -1094,11 +1094,6 @@ void PaulaSound::stopSound(int channel) {
_mixer->stopHandle(_channelsTable[channel].handle);
}
-void PaulaSound::update() {
- // process volume slides and start sound playback
- // TODO
-}
-
void PaulaSound::sfxTimerProc(void *param) {
PaulaSound *sound = (PaulaSound *)param;
sound->sfxTimerCallback();
diff --git a/engines/cine/sound.h b/engines/cine/sound.h
index 0787568173..515d4693e6 100644
--- a/engines/cine/sound.h
+++ b/engines/cine/sound.h
@@ -48,7 +48,6 @@ public:
virtual void playSound(int channel, int frequency, const uint8 *data, int size, int volumeStep, int stepCount, int volume, int repeat) = 0;
virtual void stopSound(int channel) = 0;
- virtual void update() {}
protected:
@@ -92,7 +91,6 @@ public:
virtual void playSound(int channel, int frequency, const uint8 *data, int size, int volumeStep, int stepCount, int volume, int repeat);
virtual void stopSound(int channel);
- virtual void update();
enum {
PAULA_FREQ = 3579545,