mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 20:28:56 +00:00
AudioCommon: get rid of Update(), it never does anything
This commit is contained in:
parent
c2d396526b
commit
d14b9a73b2
8 changed files with 0 additions and 25 deletions
|
@ -126,9 +126,6 @@ bool OpenALStream::Init()
|
|||
OpenALStream::~OpenALStream()
|
||||
{
|
||||
m_run_thread.Clear();
|
||||
// kick the thread if it's waiting
|
||||
m_sound_sync_event.Set();
|
||||
|
||||
m_thread.join();
|
||||
|
||||
palSourceStop(m_source);
|
||||
|
@ -155,11 +152,6 @@ void OpenALStream::SetVolume(int volume)
|
|||
palSourcef(m_source, AL_GAIN, m_volume);
|
||||
}
|
||||
|
||||
void OpenALStream::Update()
|
||||
{
|
||||
m_sound_sync_event.Set();
|
||||
}
|
||||
|
||||
bool OpenALStream::SetRunning(bool running)
|
||||
{
|
||||
if (running)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue