mirror of https://github.com/mgba-emu/mgba.git
Debugger: Fix binary print putting spaces between digits
This commit is contained in:
parent
12fce1fba0
commit
da094de3da
1
CHANGES
1
CHANGES
|
@ -45,6 +45,7 @@ Bugfixes:
|
||||||
- Qt: Fix a race condition when a game crashes immediately
|
- Qt: Fix a race condition when a game crashes immediately
|
||||||
- Qt: Fix some cases where key mapping can break if focus is adjusted
|
- Qt: Fix some cases where key mapping can break if focus is adjusted
|
||||||
- GBA Memory: Filter out top nybble of DMA addresses
|
- GBA Memory: Filter out top nybble of DMA addresses
|
||||||
|
- Debugger: Fix binary print putting spaces between digits
|
||||||
Misc:
|
Misc:
|
||||||
- Qt: Disable sync to video by default
|
- Qt: Disable sync to video by default
|
||||||
- GBA: Exit cleanly on FATAL if the port supports it
|
- GBA: Exit cleanly on FATAL if the port supports it
|
||||||
|
|
|
@ -191,7 +191,7 @@ static void _printBin(struct CLIDebugger* debugger, struct CLIDebugVector* dv) {
|
||||||
printf(" 0b");
|
printf(" 0b");
|
||||||
int i = 32;
|
int i = 32;
|
||||||
while (i--) {
|
while (i--) {
|
||||||
printf(" %u", (dv->intValue >> i) & 1);
|
printf("%u", (dv->intValue >> i) & 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
printf("\n");
|
printf("\n");
|
||||||
|
|
Loading…
Reference in New Issue