From 759240d6c840b08f875221586469dd449417be36 Mon Sep 17 00:00:00 2001 From: zelimdamian Date: Wed, 16 Dec 2015 18:36:08 +0000 Subject: [PATCH] Added VK_DECIMAL to keyboard code translation --- examples/common/entry/entry_windows.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/common/entry/entry_windows.cpp b/examples/common/entry/entry_windows.cpp index c61450c9..942a4e87 100644 --- a/examples/common/entry/entry_windows.cpp +++ b/examples/common/entry/entry_windows.cpp @@ -368,6 +368,7 @@ namespace entry s_translateKey[VK_OEM_7] = Key::Quote; s_translateKey[VK_OEM_COMMA] = Key::Comma; s_translateKey[VK_OEM_PERIOD] = Key::Period; + s_translateKey[VK_DECIMAL] = Key::Period; s_translateKey[VK_OEM_2] = Key::Slash; s_translateKey[VK_OEM_5] = Key::Backslash; s_translateKey[VK_OEM_3] = Key::Tilde;