mirror of https://github.com/PCSX2/pcsx2.git
gui: kb shortcuts: fix z shortcut
This commit is contained in:
parent
a76914a4b1
commit
efeb66c852
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue