mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-16 07:11:40 +00:00
AudioCommon: Get rid of some unnecessary mem_fn calls
This commit is contained in:
parent
46ce810b45
commit
17e79a966a
2 changed files with 3 additions and 5 deletions
|
@ -38,7 +38,7 @@ bool OpenALStream::Start()
|
|||
//period_size_in_millisec = 1000 / refresh;
|
||||
|
||||
alcMakeContextCurrent(pContext);
|
||||
thread = std::thread(std::mem_fn(&OpenALStream::SoundLoop), this);
|
||||
thread = std::thread(&OpenALStream::SoundLoop, this);
|
||||
bReturn = true;
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue