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:
nakeee 2009-07-25 18:31:01 +00:00
parent 3b0e949c93
commit af010c6bc2
1 changed files with 3 additions and 1 deletions

View File

@ -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.