gui: kb shortcuts: fix z shortcut

This commit is contained in:
Avi Halachmi (:avih) 2015-10-12 01:55:45 +03:00
parent a76914a4b1
commit efeb66c852
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ static void initTable()
pxAssert(PX_VK_A < PX_VK_Z);
// VK codes for letter keys - return lower case ascii
for (UINT i = PX_VK_A; i < PX_VK_Z; i++)
for (UINT i = PX_VK_A; i <= PX_VK_Z; i++)
addTx(i, i + 'a' - PX_VK_A);
initialized = true;