Added a critical section around the external_interrupt_waiting variable, to be safe. Also, commit a file I missed in r6859.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6860 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
skidau
2011-01-16 11:13:23 +00:00
parent f9f7629268
commit e3d7e39b3e
4 changed files with 19 additions and 8 deletions

View File

@ -156,7 +156,7 @@ int RunCyclesDebug(int cycles)
{
DSPCore_CheckExternalInterrupt();
DSPCore_CheckExceptions();
g_dsp.external_interrupt_waiting = false;
DSPCore_SetExternalInterrupt(false);
}
while (true)
@ -220,7 +220,7 @@ int RunCycles(int cycles)
{
DSPCore_CheckExternalInterrupt();
DSPCore_CheckExceptions();
g_dsp.external_interrupt_waiting = false;
DSPCore_SetExternalInterrupt(false);
}
while (true)