1
0
Fork 0

Platform/Win32/Win32Display.cpp: change OutputDebugString() to Log::debug()

This commit is contained in:
Henrik Hautakoski 2020-11-06 11:10:38 +01:00
parent f0d769c923
commit 2da0f7e712

View file

@ -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 :