all repos — mgba @ da094de3da3362166d667b78d3bec7890ef61fb9

mGBA Game Boy Advance Emulator

Debugger: Fix binary print putting spaces between digits
Jeffrey Pfau jeffrey@endrift.com
Thu, 08 Jan 2015 01:03:06 -0800
commit

da094de3da3362166d667b78d3bec7890ef61fb9

parent

12fce1fba0adf92d61d95a279324e31e27fef03b

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

jump to
M CHANGESCHANGES

@@ -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.csrc/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");