mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
CINE: Remove unused Sound::update method.
This commit is contained in:
parent
0fe5e0e6bd
commit
35e61b7c7a
@ -217,7 +217,6 @@ void manageEvents() {
|
||||
g_system->delayMillis(20);
|
||||
} while (g_system->getMillis() < nextFrame);
|
||||
|
||||
g_sound->update();
|
||||
mouseData.left = mouseLeft;
|
||||
mouseData.right = mouseRight;
|
||||
}
|
||||
|
@ -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();
|
||||
|
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user