mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
Fix DSPLLE for games which DMA data from MEM2 to the DSP.
Fixes issue 7812.
This commit is contained in:
parent
ef1520eab0
commit
9cb80875e6
1 changed files with 2 additions and 1 deletions
|
@ -168,7 +168,8 @@ bool DSPLLE::Initialize(bool bWii, bool bDSPThread)
|
|||
if (!DSPCore_Init(opts))
|
||||
return false;
|
||||
|
||||
g_dsp.cpu_ram = Memory::m_pRAM;
|
||||
// DSPLLE directly accesses the fastmem arena.
|
||||
g_dsp.cpu_ram = Memory::base;
|
||||
DSPCore_Reset();
|
||||
|
||||
m_bIsRunning = true;
|
||||
|
|
Loading…
Add table
Reference in a new issue