all repos — mgba @ 768316a8d39665065507a29ccb2ea06ac4a26823

mGBA Game Boy Advance Emulator

Fix two small consistency issues
Jeffrey Pfau jeffrey@endrift.com
Thu, 23 Oct 2014 01:45:16 -0700
commit

768316a8d39665065507a29ccb2ea06ac4a26823

parent

d3b78b2fd2b874fa368524c13f0a667a7db244a5

2 files changed, 2 insertions(+), 2 deletions(-)

jump to
M src/debugger/cli-debugger.csrc/debugger/cli-debugger.c

@@ -201,7 +201,7 @@ for ( ; dv; dv = dv->next) {

printf(" 0b"); int i = 32; while (i--) { - printf("%u", (dv->intValue >> i) & 1); + printf(" %u", (dv->intValue >> i) & 1); } } printf("\n");
M src/gba/gba-bios.csrc/gba/gba-bios.c

@@ -227,7 +227,7 @@ case 0x1F:

_MidiKey2Freq(gba); break; default: - GBALog(gba, GBA_LOG_STUB, "Stub software interrupt: %02x", immediate); + GBALog(gba, GBA_LOG_STUB, "Stub software interrupt: %02X", immediate); } }