From ff11583e4e330e81f5fe5f4ecfa8272491e76620 Mon Sep 17 00:00:00 2001 From: "R. Belmont" Date: Mon, 29 Nov 2010 16:35:11 +0000 Subject: Same F4 fix for Mac OS X debugger (no whatsnew) --- src/osd/sdl/debugosx.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(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); -- cgit v1.2.3