mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-04 06:00:15 +00:00
(svn r1148) Fix: The console hotkey is finally working properly on all keyboards. It's the key on the top left corner
This commit is contained in:
parent
9d05289147
commit
64f98e058d
10
win32.c
10
win32.c
@ -113,9 +113,6 @@ static const VkMapping _vk_mapping[] = {
|
||||
AM('A','Z','A','Z'),
|
||||
AM('0','9','0','9'),
|
||||
|
||||
AS(VK_OEM_3, WKC_BACKQUOTE),
|
||||
AS(220, WKC_BACKQUOTE),
|
||||
|
||||
AS(VK_ESCAPE, WKC_ESC),
|
||||
AS(VK_PAUSE, WKC_PAUSE),
|
||||
AS(VK_BACK, WKC_BACKSPACE),
|
||||
@ -296,6 +293,13 @@ static LRESULT CALLBACK WndProcGdi(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lP
|
||||
return 0;
|
||||
}
|
||||
|
||||
case WM_CHAR: {
|
||||
uint16 scancode = (( lParam & 0xFF0000 ) >> 16 );
|
||||
if( scancode == 41 )
|
||||
_pressed_key = WKC_BACKQUOTE << 16;
|
||||
} break;
|
||||
|
||||
|
||||
case WM_KEYDOWN: {
|
||||
// this is the rewritten ascii input function
|
||||
// it disables windows deadkey handling --> more linux like :D
|
||||
|
Loading…
Reference in New Issue
Block a user