Fix a duplicate branch in MIPS/MIPSDis.cpp

Copypaste error for beql.

Thanks go out to [Unknown] for specifying the correct value of o.
This commit is contained in:
Lioncash 2013-01-25 17:57:12 -05:00
parent e1aff1fd91
commit eb84b00a3d

View File

@ -139,7 +139,7 @@ namespace MIPSDis
int o = op>>26;
if (o==4 && rs == rt)//beq
sprintf(out,"b\t->$%08x",off);
else if (o==4 && rs == rt)//beq
else if (o==20 && rs == rt)//beql
sprintf(out,"bl\t->$%08x",off);
else
sprintf(out, "%s\t%s, %s, ->$%08x",name,RN(rt),RN(rs),off);