summaryrefslogtreecommitdiffstats
path: root/osdep/getch2-win.c
diff options
context:
space:
mode:
Diffstat (limited to 'osdep/getch2-win.c')
-rw-r--r--osdep/getch2-win.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/osdep/getch2-win.c b/osdep/getch2-win.c
index c378fbfd69..59fd751c99 100644
--- a/osdep/getch2-win.c
+++ b/osdep/getch2-win.c
@@ -74,9 +74,11 @@ int getch2(int time){
return KEY_RIGHT;
case VK_DOWN:
return KEY_DOWN;
+ case VK_SHIFT:
+ continue;
}
/*check for function keys*/
- if(eventbuffer[i].Event.KeyEvent.wVirtualKeyCode >= 0x70)
+ if(0x87 >= eventbuffer[i].Event.KeyEvent.wVirtualKeyCode >= 0x70)
return (KEY_F + 1 + eventbuffer[i].Event.KeyEvent.wVirtualKeyCode - 0x70);
/*only characters should be remaining*/