all repos — mgba @ cf28e05f1ae15bd915589b038e0f0a7bc6e82d05

mGBA Game Boy Advance Emulator

Debugger: Minor text fixes
Vicki Pfau vi@endrift.com
Sat, 06 Oct 2018 18:03:23 -0700
commit

cf28e05f1ae15bd915589b038e0f0a7bc6e82d05

parent

704642241748e05de8db30a5b4d4751ba31834a0

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

jump to
M CHANGESCHANGES

@@ -129,6 +129,7 @@ - Wii: Stretch now sets pixel-accurate mode size cap

- Qt: Ensure camera image is valid - GB: Improved SGB2 support - Libretro: Reduce rumble callbacks + - Debugger: Minor text fixes 0.7 beta 1: (2018-09-24) - Initial beta for 0.7
M src/debugger/cli-debugger.csrc/debugger/cli-debugger.c

@@ -841,9 +841,9 @@ break;

case DEBUGGER_ENTER_WATCHPOINT: if (info) { if (info->type.wp.accessType & WATCHPOINT_WRITE) { - cliDebugger->backend->printf(cliDebugger->backend, "Hit watchpoint at 0x%08X: (new value = 0x%08x, old value = 0x%08X)\n", info->address, info->type.wp.newValue, info->type.wp.oldValue); + cliDebugger->backend->printf(cliDebugger->backend, "Hit watchpoint at 0x%08X: (new value = 0x%08X, old value = 0x%08X)\n", info->address, info->type.wp.newValue, info->type.wp.oldValue); } else { - cliDebugger->backend->printf(cliDebugger->backend, "Hit watchpoint at 0x%08X: (value = 0x%08x)\n", info->address, info->type.wp.oldValue); + cliDebugger->backend->printf(cliDebugger->backend, "Hit watchpoint at 0x%08X: (value = 0x%08X)\n", info->address, info->type.wp.oldValue); } } else { cliDebugger->backend->printf(cliDebugger->backend, "Hit watchpoint\n");