Changeset - r2845:0e707ee745b1
[Not reviewed]
master
0 2 0
bjarni - 18 years ago 2006-01-09 21:14:56
bjarni@openttd.org
(svn r3393) -Fix: [OSX] some keyboards had a different scancode for opening the console (egladil)
2 files changed with 5 insertions and 2 deletions:
0 comments (0 inline, 0 general)
video/cocoa_v.h
Show inline comments
 
@@ -27,7 +27,8 @@ extern const HalVideoDriver _cocoa_video
 
#define QZ_SCROLLOCK    0x6B
 
#define QZ_PAUSE		0x71
 
#define QZ_POWER		0x7F
 
#define QZ_BACKQUOTE	0x32
 
#define QZ_BACKQUOTE		0x0A
 
#define QZ_BACKQUOTE2		0x32
 
#define QZ_1			0x12
 
#define QZ_2			0x13
 
#define QZ_3			0x14
video/cocoa_v.m
Show inline comments
 
@@ -226,7 +226,9 @@ typedef struct VkMapping {
 
#define AS(x, z) {x, z}
 

	
 
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
 
	//AM(SDLK_PAGEUP, SDLK_PAGEDOWN, WKC_PAGEUP, WKC_PAGEDOWN),  <==== Does this include HOME/END?
 
	AS(QZ_PAGEUP,		WKC_PAGEUP),
0 comments (0 inline, 0 general)