Revert "mem_fun -> mem_fn."

This reverts commit b7d32b0a3d.

OSX C++ std library in charge of holding back progress (as usual).
This commit is contained in:
Lioncash
2013-01-23 23:38:49 -05:00
parent b7d32b0a3d
commit fe7e691d77
8 changed files with 9 additions and 11 deletions

View File

@ -135,7 +135,7 @@ bool DSound::Start()
dsBuffer->Lock(0, bufferSize, (void* *)&p1, &num1, 0, 0, DSBLOCK_ENTIREBUFFER);
memset(p1, 0, num1);
dsBuffer->Unlock(p1, num1, 0, 0);
thread = std::thread(std::mem_fn(&DSound::SoundLoop), this);
thread = std::thread(std::mem_fun(&DSound::SoundLoop), this);
return true;
}