fix for the del key 3

This commit is contained in:
Alexander S. Aganichev 2002-10-30 06:57:27 +00:00
parent f47afcdbb4
commit 4e4f8ba5eb

View File

@ -1233,7 +1233,7 @@ gkey kbxget_raw(int mode) {
}
// Fix Win9x anomaly
if((CKS & NUMLOCK_ON) and (VKC == VK_DELETE) and ascii)
if((CKS & NUMLOCK_ON) and not (CKS & ENHANCED_KEY) and (VKC == VK_DELETE))
VKC = VK_DECIMAL;
switch(VKC) {