mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 06:08:50 +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
1 changed files with 3 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue