From 3f38286049e33fbc4c134e6d98841ca901afec09 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Fri, 13 Nov 2020 00:23:10 +0100 Subject: [PATCH] source/Platform/Win32/Win32EventQueue.cpp: change OutputDebugString() to Log::debug() --- source/Platform/Win32/Win32EventQueue.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/Platform/Win32/Win32EventQueue.cpp b/source/Platform/Win32/Win32EventQueue.cpp index 8340521..40a878d 100644 --- a/source/Platform/Win32/Win32EventQueue.cpp +++ b/source/Platform/Win32/Win32EventQueue.cpp @@ -3,6 +3,7 @@ #include "Win32Keyboard.h" #include "Win32Mouse.h" #include "Win32EventQueue.h" +#include namespace sp { @@ -28,8 +29,8 @@ LRESULT Win32EventQueue::processMessage(MSG msg, Event& event) // Input, Forward to devices. case WM_KEYDOWN : case WM_KEYUP : - OutputDebugString("WM_KEYDOWN\n"); - //SetCapture(msg.hwnd); + + Log::debug("WM_KEY"); if (Win32Keyboard::handleMessage(msg, event)) { // Keyboard did handle the message.