mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-15 23:08:51 +00:00
Initialize the audiocommon mixer on the first write to DSPCR, even if DSP is not enabled. Fixes issue 6192.
This commit is contained in:
parent
6e708005df
commit
9860137291
1 changed files with 1 additions and 1 deletions
|
@ -273,7 +273,7 @@ u16 DSPHLE::DSP_WriteControlRegister(unsigned short _Value)
|
||||||
UDSPControl Temp(_Value);
|
UDSPControl Temp(_Value);
|
||||||
if (!m_InitMixer)
|
if (!m_InitMixer)
|
||||||
{
|
{
|
||||||
if (!Temp.DSPHalt && Temp.DSPInit)
|
if (!Temp.DSPHalt)
|
||||||
{
|
{
|
||||||
InitMixer();
|
InitMixer();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue