mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
Replace use of the deprecated mem_fun function with mem_fn.
This commit is contained in:
parent
bad109402e
commit
e79895e372
10 changed files with 11 additions and 11 deletions
|
@ -36,7 +36,7 @@ bool OpenALStream::Start()
|
|||
//period_size_in_millisec = 1000 / refresh;
|
||||
|
||||
alcMakeContextCurrent(pContext);
|
||||
thread = std::thread(std::mem_fun(&OpenALStream::SoundLoop), this);
|
||||
thread = std::thread(std::mem_fn(&OpenALStream::SoundLoop), this);
|
||||
bReturn = true;
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue