mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
AudioCommon: get rid of Update(), it never does anything
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user