mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
AudioCommon: Remove unnecessary usages of mem_fn
This commit is contained in:
@ -2,8 +2,6 @@
|
||||
// Licensed under GPLv2
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include <functional>
|
||||
|
||||
#include "AudioCommon/AlsaSoundStream.h"
|
||||
#include "Common/Common.h"
|
||||
#include "Common/Thread.h"
|
||||
@ -24,7 +22,7 @@ AlsaSound::~AlsaSound()
|
||||
|
||||
bool AlsaSound::Start()
|
||||
{
|
||||
thread = std::thread(std::mem_fn(&AlsaSound::SoundLoop), this);
|
||||
thread = std::thread(&AlsaSound::SoundLoop, this);
|
||||
thread_data = 0;
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user