DSPLLE - small fix

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5221 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Marko Pusljar
2010-03-22 16:32:48 +00:00
parent 11a215567b
commit cac8fa8afc
6 changed files with 80 additions and 81 deletions

View File

@ -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)
{