mirror of https://github.com/PCSX2/pcsx2.git
SPU2: Don't initialise sound buffer if it's not open
This commit is contained in:
parent
4dc0db6ee6
commit
ef9c8ce877
|
@ -46,15 +46,18 @@ void SPU2configure()
|
||||||
|
|
||||||
configure();
|
configure();
|
||||||
|
|
||||||
try
|
if (IsOpened)
|
||||||
{
|
{
|
||||||
Console.Warning("SPU2: Sound output module reset");
|
try
|
||||||
SndBuffer::Init();
|
{
|
||||||
}
|
Console.Warning("SPU2: Sound output module reset");
|
||||||
catch (std::exception& ex)
|
SndBuffer::Init();
|
||||||
{
|
}
|
||||||
fprintf(stderr, "SPU2 Error: Could not initialize device, or something.\nReason: %s", ex.what());
|
catch (std::exception& ex)
|
||||||
SPU2close();
|
{
|
||||||
|
fprintf(stderr, "SPU2 Error: Could not initialize device, or something.\nReason: %s", ex.what());
|
||||||
|
SPU2close();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
paused_core.AllowResume();
|
paused_core.AllowResume();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue