mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-25 17:19:42 +00:00
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:
parent
e1aff1fd91
commit
eb84b00a3d
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user