mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-26 03:35:26 +00:00
DSPLLE: set currentEpilogeFunc to NULL
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3882 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
3b0e949c93
commit
af010c6bc2
@ -157,8 +157,10 @@ inline void ExecuteInstruction(const UDSPInstruction& inst)
|
||||
if (opTableUseExt[inst.hex])
|
||||
extOpTable[inst.hex & 0xFF](inst);
|
||||
opTable[inst.hex](inst);
|
||||
if (currentEpilogeFunc)
|
||||
if (currentEpilogeFunc) {
|
||||
currentEpilogeFunc(inst);
|
||||
currentEpilogeFunc = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
// This one's pretty slow, try to use it only at init or seldomly.
|
||||
|
Loading…
x
Reference in New Issue
Block a user