Merge pull request #916 from lioncash/unused-param

AudioCommon: Get rid of now unused handle param for InitSoundStream()
This commit is contained in:
Lioncash 2014-08-30 23:41:05 -04:00
commit 70b887659e
3 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ SoundStream *soundStream = nullptr;
namespace AudioCommon namespace AudioCommon
{ {
SoundStream *InitSoundStream(void *hWnd) SoundStream* InitSoundStream()
{ {
CMixer *mixer = new CMixer(48000); CMixer *mixer = new CMixer(48000);

View File

@ -14,7 +14,7 @@ extern SoundStream *soundStream;
namespace AudioCommon namespace AudioCommon
{ {
SoundStream *InitSoundStream(void *hWnd); SoundStream* InitSoundStream();
void ShutdownSoundStream(); void ShutdownSoundStream();
std::vector<std::string> GetSoundBackends(); std::vector<std::string> GetSoundBackends();
void PauseAndLock(bool doLock, bool unpauseOnUnlock=true); void PauseAndLock(bool doLock, bool unpauseOnUnlock=true);

View File

@ -363,7 +363,7 @@ void EmuThread()
} }
AudioCommon::InitSoundStream(g_pWindowHandle); AudioCommon::InitSoundStream();
// The hardware is initialized. // The hardware is initialized.
g_bHwInit = true; g_bHwInit = true;