From a2b74384dfbe994cb32e91138e28d16dc1f0e35f Mon Sep 17 00:00:00 2001 From: David Ludwig Date: Wed, 23 Jan 2013 08:45:28 -0500 Subject: [PATCH] WinRT: minor comment change to keyboard code --- src/video/windowsrt/SDL_WinRTApp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/windowsrt/SDL_WinRTApp.cpp b/src/video/windowsrt/SDL_WinRTApp.cpp index 0c74750dc..98f95ab0b 100644 --- a/src/video/windowsrt/SDL_WinRTApp.cpp +++ b/src/video/windowsrt/SDL_WinRTApp.cpp @@ -465,7 +465,7 @@ TranslateKeycode(int keycode) { /* Try to get a documented, WinRT, 'VirtualKey' first (as documented at http://msdn.microsoft.com/en-us/library/windows/apps/windows.system.virtualkey.aspx ). - If that fails, try to get a Win32 virtual key. + If that fails, fall back to a Win32 virtual key. */ // TODO, WinRT: try filling out the WinRT keycode table as much as possible, using the Win32 table for interpretation hints SDL_Scancode scancode = SDL_SCANCODE_UNKNOWN;