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.