mirror of
https://github.com/yawut/SDL.git
synced 2026-08-23 17:25:26 -05:00
Date: Sun, 21 Sep 2003 19:52:42 -0600
From: Tyler Montbriand <tsm@accesscomm.ca> Subject: Re: [SDL] Hardware buttons on pocket pc I found it! :) It has to do with the UNICODE translation code, in SDL_dibevents.c, in the '#ifdef NO_GETKEYBOARDSTATE' block in DIB_HandleMessage(). The error handling is a little... aggressive. If it can't translate from unicode, it wipes out the virtual keycode.
This commit is contained in:
@@ -147,8 +147,6 @@ LONG
|
||||
if ( TranslateMessage(&m) && PeekMessage(&m, hwnd, 0, WM_USER, PM_NOREMOVE) && (m.message == WM_CHAR) ) {
|
||||
GetMessage(&m, hwnd, 0, WM_USER);
|
||||
wParam = m.wParam;
|
||||
} else {
|
||||
wParam = 0;
|
||||
}
|
||||
}
|
||||
#endif /* NO_GETKEYBOARDSTATE */
|
||||
|
||||
Reference in New Issue
Block a user