Debugger: Fix binary print putting spaces between digits
Jeffrey Pfau jeffrey@endrift.com
Thu, 08 Jan 2015 01:03:06 -0800
2 files changed,
2 insertions(+),
1 deletions(-)
M
CHANGES
→
CHANGES
@@ -45,6 +45,7 @@ - GBA Audio: Fix GB audio channels being too quiet (fixes #159)
- Qt: Fix a race condition when a game crashes immediately - Qt: Fix some cases where key mapping can break if focus is adjusted - GBA Memory: Filter out top nybble of DMA addresses + - Debugger: Fix binary print putting spaces between digits Misc: - Qt: Disable sync to video by default - GBA: Exit cleanly on FATAL if the port supports it
M
src/debugger/cli-debugger.c
→
src/debugger/cli-debugger.c
@@ -191,7 +191,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");