From 768316a8d39665065507a29ccb2ea06ac4a26823 Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Thu, 23 Oct 2014 01:45:16 -0700 Subject: [PATCH] Fix two small consistency issues --- src/debugger/cli-debugger.c | 2 +- src/gba/gba-bios.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/debugger/cli-debugger.c b/src/debugger/cli-debugger.c index e1ad3f2ef..80b884890 100644 --- a/src/debugger/cli-debugger.c +++ b/src/debugger/cli-debugger.c @@ -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"); diff --git a/src/gba/gba-bios.c b/src/gba/gba-bios.c index bfd39ced5..d5985a7f1 100644 --- a/src/gba/gba-bios.c +++ b/src/gba/gba-bios.c @@ -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); } }