From 065d9e4321c2c620a11cf260464a82aca13995b4 Mon Sep 17 00:00:00 2001 From: zeromus Date: Sun, 17 Mar 2019 23:08:21 -0400 Subject: [PATCH] fix printf warning --- desmume/src/debug.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desmume/src/debug.cpp b/desmume/src/debug.cpp index dc7db159e..9ba04fcbd 100644 --- a/desmume/src/debug.cpp +++ b/desmume/src/debug.cpp @@ -275,7 +275,7 @@ void DEBUG_reset() DEBUG_Notify = DebugNotify(); DEBUG_statistics = DebugStatistics(); - printf("DEBUG_reset: %08X\n",&DebugStatistics::print); //force a reference to this function + printf("DEBUG_reset: %p\n",&DebugStatistics::print); //force a reference to this function } static void DEBUG_dumpMemory_fill(EMUFILE &fp, u32 size)