AudioCommon: get rid of Update(), it never does anything

This commit is contained in:
Tillmann Karras
2021-08-07 22:02:10 +01:00
parent c2d396526b
commit d14b9a73b2
8 changed files with 0 additions and 25 deletions

View File

@ -59,7 +59,6 @@ public:
void SoundLoop() override;
void SetVolume(int volume) override;
bool SetRunning(bool running) override;
void Update() override;
static bool isValid();
@ -67,8 +66,6 @@ private:
std::thread m_thread;
Common::Flag m_run_thread;
Common::Event m_sound_sync_event;
std::vector<short> m_realtime_buffer;
std::array<ALuint, OAL_BUFFERS> m_buffers;
ALuint m_source;