mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-11 16:49:28 +02:00
DSPLLE: Opcode LUT Cleanup
ABI: Far Call --> Call (thanks to correct vcproj settings) git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5250 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -71,7 +71,7 @@ void ifcc(const UDSPInstruction opc)
|
||||
if (!CheckCondition(opc & 0xf))
|
||||
{
|
||||
// skip the next opcode - we have to lookup its size.
|
||||
g_dsp.pc += opSize[dsp_peek_code()];
|
||||
dsp_skip_inst();
|
||||
}
|
||||
}
|
||||
|
||||
@ -242,7 +242,7 @@ void bloop(const UDSPInstruction opc)
|
||||
else
|
||||
{
|
||||
g_dsp.pc = loop_pc;
|
||||
g_dsp.pc += opSize[dsp_peek_code()];
|
||||
dsp_skip_inst();
|
||||
}
|
||||
}
|
||||
|
||||
@ -269,7 +269,7 @@ void bloopi(const UDSPInstruction opc)
|
||||
else
|
||||
{
|
||||
g_dsp.pc = loop_pc;
|
||||
g_dsp.pc += opSize[dsp_peek_code()];
|
||||
dsp_skip_inst();
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user