From 2da0f7e71204190f6df24663de5304dfe3d20bd1 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Fri, 6 Nov 2020 11:10:38 +0100 Subject: [PATCH] Platform/Win32/Win32Display.cpp: change OutputDebugString() to Log::debug() --- source/Platform/Win32/Win32Display.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Platform/Win32/Win32Display.cpp b/source/Platform/Win32/Win32Display.cpp index 57c0d0a..f9bc72c 100644 --- a/source/Platform/Win32/Win32Display.cpp +++ b/source/Platform/Win32/Win32Display.cpp @@ -296,10 +296,10 @@ void Win32Display::processMessage(UINT message, WPARAM wParam, LPARAM lParam) PostQuitMessage(0); break; case WM_SETFOCUS : - OutputDebugString("WM_SETFOCUS\n"); + Log::debug("WM_SETFOCUS"); break; case WM_KILLFOCUS : - OutputDebugString("WM_KILLFOCUS\n"); + Log::debug("WM_KILLFOCUS"); break; case WM_SIZE :