WinRT: Fixed bug whereby key-detection code could call SDL_Log
diff --git a/src/video/winrt/SDL_winrtkeyboard.cpp b/src/video/winrt/SDL_winrtkeyboard.cpp
index 7e7049e..686f39e 100644
--- a/src/video/winrt/SDL_winrtkeyboard.cpp
+++ b/src/video/winrt/SDL_winrtkeyboard.cpp
@@ -305,9 +305,11 @@ TranslateKeycode(int keycode, unsigned int nativeScancode)
scancode = windows_scancode_table[nativeScancode];
}
}
+ /*
if (scancode == SDL_SCANCODE_UNKNOWN) {
SDL_Log("WinRT TranslateKeycode, unknown keycode=%d\n", (int)keycode);
}
+ */
return scancode;
}