[Win32] Proper handling of character case for keyboard events

This commit is contained in:
Jack Andersen
2015-12-20 12:52:48 -10:00
parent 511ac1fad7
commit 886ae22e08
3 changed files with 17 additions and 5 deletions

View File

@@ -96,6 +96,7 @@ public:
WIN32_CURSORS.m_arrow = LoadCursor(nullptr, IDC_ARROW);
WIN32_CURSORS.m_hResize = LoadCursor(nullptr, IDC_SIZEWE);
WIN32_CURSORS.m_vResize = LoadCursor(nullptr, IDC_SIZENS);
WIN32_CURSORS.m_ibeam = LoadCursor(nullptr, IDC_IBEAM);
WIN32_CURSORS.m_wait = LoadCursor(nullptr, IDC_WAIT);
HMODULE dxgilib = LoadLibraryW(L"dxgi.dll");