mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix a couple signedness warnings in disarm.
This commit is contained in:
parent
140fd171ef
commit
e27faf7c8a
1 changed files with 2 additions and 2 deletions
|
@ -757,7 +757,7 @@ lPling:
|
|||
}
|
||||
else {
|
||||
if (((int)imm8)<0 && ((int)imm8)>-100) {
|
||||
*op++='-'; imm8=-imm8;
|
||||
*op++='-'; imm8=-(int)imm8;
|
||||
}
|
||||
op = num(op, imm8);
|
||||
}
|
||||
|
@ -880,7 +880,7 @@ lPling:
|
|||
if (!(instr&Ubit)) {
|
||||
if (offset) *op++='-';
|
||||
else result.oddbits=1;
|
||||
result.offset = -offset;
|
||||
result.offset = -(int)offset;
|
||||
}
|
||||
else result.offset = offset;
|
||||
op = num(op, offset);
|
||||
|
|
Loading…
Add table
Reference in a new issue