From c1abe54ec963fe3b0e15a8374619e52ca5ec9258 Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Mon, 1 Sep 2014 02:05:37 -0700 Subject: [PATCH] Fix debuggers not logging --- src/gba/gba-thread.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gba/gba-thread.c b/src/gba/gba-thread.c index 12ca41900..d1ca8c9ba 100644 --- a/src/gba/gba-thread.c +++ b/src/gba/gba-thread.c @@ -144,6 +144,7 @@ static THREAD_ENTRY _GBAThreadRun(void* context) { } if (threadContext->debugger) { + threadContext->debugger->log = GBADebuggerLogShim; GBAAttachDebugger(&gba, threadContext->debugger); ARMDebuggerEnter(threadContext->debugger, DEBUGGER_ENTER_ATTACHED); }