mirror of https://github.com/mgba-emu/mgba.git
Fix two small consistency issues
This commit is contained in:
parent
d3b78b2fd2
commit
768316a8d3
|
@ -201,7 +201,7 @@ static void _printBin(struct CLIDebugger* debugger, struct DebugVector* dv) {
|
|||
printf(" 0b");
|
||||
int i = 32;
|
||||
while (i--) {
|
||||
printf("%u", (dv->intValue >> i) & 1);
|
||||
printf(" %u", (dv->intValue >> i) & 1);
|
||||
}
|
||||
}
|
||||
printf("\n");
|
||||
|
|
|
@ -227,7 +227,7 @@ void GBASwi16(struct ARMCore* cpu, int immediate) {
|
|||
_MidiKey2Freq(gba);
|
||||
break;
|
||||
default:
|
||||
GBALog(gba, GBA_LOG_STUB, "Stub software interrupt: %02x", immediate);
|
||||
GBALog(gba, GBA_LOG_STUB, "Stub software interrupt: %02X", immediate);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue