forked from dolphin-emu/dolphin
Replace use of the deprecated mem_fun function with mem_fn.
This commit is contained in:
@@ -50,7 +50,7 @@ bool AOSound::Start()
|
||||
{
|
||||
memset(realtimeBuffer, 0, sizeof(realtimeBuffer));
|
||||
|
||||
thread = std::thread(std::mem_fun(&AOSound::SoundLoop), this);
|
||||
thread = std::thread(std::mem_fn(&AOSound::SoundLoop), this);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user