AudioCommon: Get rid of some unnecessary mem_fn calls

This commit is contained in:
Lioncash
2014-08-02 22:53:09 -04:00
parent 46ce810b45
commit 17e79a966a
2 changed files with 3 additions and 5 deletions

View File

@ -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