CINE: Remove unused Sound::update method.

This commit is contained in:
Johannes Schickel 2012-09-07 23:28:22 +02:00
parent 0fe5e0e6bd
commit 35e61b7c7a
3 changed files with 0 additions and 8 deletions

View File

@ -217,7 +217,6 @@ void manageEvents() {
g_system->delayMillis(20);
} while (g_system->getMillis() < nextFrame);
g_sound->update();
mouseData.left = mouseLeft;
mouseData.right = mouseRight;
}

View File

@ -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();

View File

@ -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,