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])
|
if (opTableUseExt[inst.hex])
|
||||||
extOpTable[inst.hex & 0xFF](inst);
|
extOpTable[inst.hex & 0xFF](inst);
|
||||||
opTable[inst.hex](inst);
|
opTable[inst.hex](inst);
|
||||||
if (currentEpilogeFunc)
|
if (currentEpilogeFunc) {
|
||||||
currentEpilogeFunc(inst);
|
currentEpilogeFunc(inst);
|
||||||
|
currentEpilogeFunc = NULL;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// This one's pretty slow, try to use it only at init or seldomly.
|
// This one's pretty slow, try to use it only at init or seldomly.
|
||||||
|
|
Loading…
Reference in New Issue