this stops vboy crashing here.. I don't know why (nw)

This commit is contained in:
David Haywood 2013-01-19 02:05:54 +00:00
parent 4c0b0edaad
commit 72f3922fba

View File

@ -1314,7 +1314,9 @@ static CPU_EXECUTE( v810 )
debugger_instruction_hook(device, cpustate->PC);
op=R_OP(cpustate,cpustate->PC);
cpustate->PC+=2;
cpustate->icount-= OpCodeTable[op>>10](cpustate,op);
int cnt;
cnt = OpCodeTable[op>>10](cpustate,op);
cpustate->icount-= cnt;
}
}