mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Merge pull request #10732 from Pokechu22/dsp-init
Increase accuracy of DSP initialization process
This commit is contained in:
@ -183,7 +183,7 @@ void DSPLLE::Shutdown()
|
||||
|
||||
u16 DSPLLE::DSP_WriteControlRegister(u16 value)
|
||||
{
|
||||
m_dsp_core.GetInterpreter().WriteCR(value);
|
||||
m_dsp_core.GetInterpreter().WriteControlRegister(value);
|
||||
|
||||
if ((value & CR_EXTERNAL_INT) != 0)
|
||||
{
|
||||
@ -207,7 +207,7 @@ u16 DSPLLE::DSP_WriteControlRegister(u16 value)
|
||||
|
||||
u16 DSPLLE::DSP_ReadControlRegister()
|
||||
{
|
||||
return m_dsp_core.GetInterpreter().ReadCR();
|
||||
return m_dsp_core.GetInterpreter().ReadControlRegister();
|
||||
}
|
||||
|
||||
u16 DSPLLE::DSP_ReadMailBoxHigh(bool cpu_mailbox)
|
||||
|
Reference in New Issue
Block a user