summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2010-11-29 16:35:11 +0000
committer R. Belmont <rb6502@users.noreply.github.com>2010-11-29 16:35:11 +0000
commitff11583e4e330e81f5fe5f4ecfa8272491e76620 (patch)
tree284e4c6c493b053b5dcefba6cef8a453aba879bd
parent4a032ab057e23eab83936dab1afffe9850487271 (diff)
Same F4 fix for Mac OS X debugger (no whatsnew)
-rw-r--r--src/osd/sdl/debugosx.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osd/sdl/debugosx.m b/src/osd/sdl/debugosx.m
index 4d9a617a088..50482bc7459 100644
--- a/src/osd/sdl/debugosx.m
+++ b/src/osd/sdl/debugosx.m
@@ -1144,7 +1144,7 @@ void console_create_window(running_machine *machine)
if (debug_cpu_get_visible_cpu(machine) == space->cpu) {
offs_t address = downcast<debug_view_disasm *>(view)->selected_address();
if (useConsole) {
- NSString *command = [NSString stringWithFormat:@"go %lX", (unsigned long)address];
+ NSString *command = [NSString stringWithFormat:@"go 0x%lX", (unsigned long)address];
debug_console_execute_command(machine, [command UTF8String], 1);
} else {
debug_cpu_get_visible_cpu(machine)->debug()->go(address);