mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
DSPLLE - small fix
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5221 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -976,13 +976,13 @@ bool DSPAssembler::AssembleFile(const char *fname, int pass)
|
||||
if (!opc)
|
||||
opc = &cw;
|
||||
|
||||
opcode_size = opc->size & ~P_EXT;
|
||||
opcode_size = opc->size;
|
||||
|
||||
VerifyParams(opc, params, params_count);
|
||||
|
||||
const opc_t *opc_ext = NULL;
|
||||
// Check for opcode extensions.
|
||||
if (opc->size & P_EXT)
|
||||
if (opc->extended)
|
||||
{
|
||||
if (opcode_ext)
|
||||
{
|
||||
|
Reference in New Issue
Block a user