interpreter: silent sign warnings
This commit is contained in:
parent
e689847b11
commit
24d2d6aa23
1 changed files with 1 additions and 1 deletions
|
@ -3586,7 +3586,7 @@ STM_INST : {
|
||||||
cpu->WriteMemory32(addr, cpu->Reg[15] + 8);
|
cpu->WriteMemory32(addr, cpu->Reg[15] + 8);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
for (int i = 0; i < 15; i++) {
|
for (unsigned int i = 0; i < 15; i++) {
|
||||||
if (BIT(inst_cream->inst, i)) {
|
if (BIT(inst_cream->inst, i)) {
|
||||||
if (i == Rn)
|
if (i == Rn)
|
||||||
cpu->WriteMemory32(addr, old_RN);
|
cpu->WriteMemory32(addr, old_RN);
|
||||||
|
|
Loading…
Reference in a new issue