mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-19 15:25:39 +00:00
(svn r3393) -Fix: [OSX] some keyboards had a different scancode for opening the console (egladil)
This commit is contained in:
parent
9c17d0ec93
commit
1b9466802f
@ -27,7 +27,8 @@ extern const HalVideoDriver _cocoa_video_driver;
|
|||||||
#define QZ_SCROLLOCK 0x6B
|
#define QZ_SCROLLOCK 0x6B
|
||||||
#define QZ_PAUSE 0x71
|
#define QZ_PAUSE 0x71
|
||||||
#define QZ_POWER 0x7F
|
#define QZ_POWER 0x7F
|
||||||
#define QZ_BACKQUOTE 0x32
|
#define QZ_BACKQUOTE 0x0A
|
||||||
|
#define QZ_BACKQUOTE2 0x32
|
||||||
#define QZ_1 0x12
|
#define QZ_1 0x12
|
||||||
#define QZ_2 0x13
|
#define QZ_2 0x13
|
||||||
#define QZ_3 0x14
|
#define QZ_3 0x14
|
||||||
|
@ -226,7 +226,9 @@ typedef struct VkMapping {
|
|||||||
#define AS(x, z) {x, z}
|
#define AS(x, z) {x, z}
|
||||||
|
|
||||||
static const VkMapping _vk_mapping[] = {
|
static const VkMapping _vk_mapping[] = {
|
||||||
AS(10, WKC_BACKQUOTE), // key left of '1'
|
AS(QZ_BACKQUOTE, WKC_BACKQUOTE), // key left of '1'
|
||||||
|
AS(QZ_BACKQUOTE2, WKC_BACKQUOTE), // some keyboards have it on another scancode
|
||||||
|
|
||||||
// Pageup stuff + up/down
|
// Pageup stuff + up/down
|
||||||
//AM(SDLK_PAGEUP, SDLK_PAGEDOWN, WKC_PAGEUP, WKC_PAGEDOWN), <==== Does this include HOME/END?
|
//AM(SDLK_PAGEUP, SDLK_PAGEDOWN, WKC_PAGEUP, WKC_PAGEDOWN), <==== Does this include HOME/END?
|
||||||
AS(QZ_PAGEUP, WKC_PAGEUP),
|
AS(QZ_PAGEUP, WKC_PAGEUP),
|
||||||
|
Loading…
Reference in New Issue
Block a user