From 17e79a966a4051c089e03b25de9640a55f39f01c Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 2 Aug 2014 22:53:09 -0400 Subject: AudioCommon: Get rid of some unnecessary mem_fn calls --- Source/Core/AudioCommon/OpenALStream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/AudioCommon/OpenALStream.cpp') diff --git a/Source/Core/AudioCommon/OpenALStream.cpp b/Source/Core/AudioCommon/OpenALStream.cpp index 84b9a72718..d9a26cac14 100644 --- a/Source/Core/AudioCommon/OpenALStream.cpp +++ b/Source/Core/AudioCommon/OpenALStream.cpp @@ -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 -- cgit v1.2.3