mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-13 00:58:29 +02:00
Fixed the DSPLLE on thread option. Works with DSP JIT, DSP Interpreter, AX and Zelda ucodes.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6859 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -150,8 +150,14 @@ int RunCyclesDebug(int cycles)
|
||||
if (cycles < 0)
|
||||
return 0;
|
||||
}
|
||||
|
||||
//DSPCore_CheckExternalInterrupt();
|
||||
|
||||
// In thread mode, process external interrupts
|
||||
if (g_dsp.external_interrupt_waiting)
|
||||
{
|
||||
DSPCore_CheckExternalInterrupt();
|
||||
DSPCore_CheckExceptions();
|
||||
g_dsp.external_interrupt_waiting = false;
|
||||
}
|
||||
|
||||
while (true)
|
||||
{
|
||||
@ -209,7 +215,13 @@ int RunCycles(int cycles)
|
||||
return 0;
|
||||
}
|
||||
|
||||
//DSPCore_CheckExternalInterrupt();
|
||||
// In thread mode, process external interrupts
|
||||
if (g_dsp.external_interrupt_waiting)
|
||||
{
|
||||
DSPCore_CheckExternalInterrupt();
|
||||
DSPCore_CheckExceptions();
|
||||
g_dsp.external_interrupt_waiting = false;
|
||||
}
|
||||
|
||||
while (true)
|
||||
{
|
||||
|
Reference in New Issue
Block a user