mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 08:09:26 +01:00
AudioCommon: Get rid of now unused handle param for InitSoundStream()
This commit is contained in:
parent
1a6268e6cf
commit
377a1c8f20
@ -25,7 +25,7 @@ SoundStream *soundStream = nullptr;
|
||||
|
||||
namespace AudioCommon
|
||||
{
|
||||
SoundStream *InitSoundStream(void *hWnd)
|
||||
SoundStream* InitSoundStream()
|
||||
{
|
||||
CMixer *mixer = new CMixer(48000);
|
||||
|
||||
|
@ -14,7 +14,7 @@ extern SoundStream *soundStream;
|
||||
|
||||
namespace AudioCommon
|
||||
{
|
||||
SoundStream *InitSoundStream(void *hWnd);
|
||||
SoundStream* InitSoundStream();
|
||||
void ShutdownSoundStream();
|
||||
std::vector<std::string> GetSoundBackends();
|
||||
void PauseAndLock(bool doLock, bool unpauseOnUnlock=true);
|
||||
|
@ -363,7 +363,7 @@ void EmuThread()
|
||||
|
||||
}
|
||||
|
||||
AudioCommon::InitSoundStream(g_pWindowHandle);
|
||||
AudioCommon::InitSoundStream();
|
||||
|
||||
// The hardware is initialized.
|
||||
g_bHwInit = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user