mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-11 12:45:05 +01:00
interpreter: silent sign warnings
This commit is contained in:
parent
e689847b11
commit
24d2d6aa23
@ -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 New Issue
Block a user