From 31fd0600b6735f866332f5a79bb2f824dd148a90 Mon Sep 17 00:00:00 2001 From: RadWolfie Date: Mon, 5 Oct 2020 05:28:21 -0500 Subject: [PATCH] hle: let EmuLog handler handle debug messages --- src/core/hle/Intercept.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/core/hle/Intercept.cpp b/src/core/hle/Intercept.cpp index 846994a03..308613979 100644 --- a/src/core/hle/Intercept.cpp +++ b/src/core/hle/Intercept.cpp @@ -192,10 +192,7 @@ void CDECL EmuOutputMessage(xb_output_message mFlag, } case XB_OUTPUT_MESSAGE_DEBUG: default: { -#ifdef _DEBUG_TRACE - printf("%s\n", message); -#endif - + EmuLog(LOG_LEVEL::DEBUG, "%s", message); break; } }