aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sfx/core.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/sfx/core.h')
-rw-r--r--engines/sci/sfx/core.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/engines/sci/sfx/core.h b/engines/sci/sfx/core.h
index 1cb6540e8e..92ea788636 100644
--- a/engines/sci/sfx/core.h
+++ b/engines/sci/sfx/core.h
@@ -169,15 +169,6 @@ public:
Common::Error sfx_send_midi(SongHandle handle, int channel,
int command, int arg1, int arg2);
- // Functions for digital sound
- void setAudioRate(uint16 rate) { _audioRate = rate; }
- Audio::SoundHandle* getAudioHandle() { return &_audioHandle; }
- int getAudioPosition();
- int startAudio(uint16 module, uint32 tuple);
- void stopAudio() { g_system->getMixer()->stopHandle(_audioHandle); }
- void pauseAudio() { g_system->getMixer()->pauseHandle(_audioHandle, true); }
- void resumeAudio() { g_system->getMixer()->pauseHandle(_audioHandle, false); }
-
// misc
/**
@@ -207,11 +198,6 @@ protected:
void updateSingleSong();
void updateMultiSong();
void update();
-
-private:
- uint16 _audioRate;
- Audio::SoundHandle _audioHandle;
- Audio::AudioStream* getAudioStream(uint32 number, uint32 volume, int *sampleLen);
};
} // End of namespace Sci