Changeset - r170:e13f0216e286
[Not reviewed]
master
0 1 0
bjarni - 20 years ago 2004-09-06 21:29:02
bjarni@openttd.org
(svn r171) MorphOS: added hotkey for console (tokai)
1 file changed with 5 insertions and 1 deletions:
sdl.c
5
1
0 comments (0 inline, 0 general)
sdl.c
Show inline comments
 
@@ -391,7 +391,11 @@ static uint32 ConvertSdlKeyIntoMy(SDL_ke
 
	#if defined(__APPLE__)
 
		if (sym->scancode == 10) key |= WKC_BACKQUOTE;
 
	#else
 
		if (sym->scancode == 49) key |= WKC_BACKQUOTE;
 
		#if defined(__MORPHOS__)
 
			if (sym->scancode == 0)  key |= WKC_BACKQUOTE;  // yes, that key is code '0' under MorphOS :)
 
		#else
 
			if (sym->scancode == 49) key |= WKC_BACKQUOTE;
 
		#endif
 
	#endif
 
#endif
 
	// META are the command keys on mac
0 comments (0 inline, 0 general)