Not necessary to have a LINUPY hack in the GP2x backend
svn-id: r27696
This commit is contained in:
parent
0b1ce0774a
commit
bcdbd90849
1 changed files with 0 additions and 7 deletions
|
@ -168,17 +168,10 @@ void OSystem_GP2X::handleKbdMouse() {
|
|||
|
||||
static byte SDLModToOSystemKeyFlags(SDLMod mod) {
|
||||
byte b = 0;
|
||||
#ifdef LINUPY
|
||||
// Yopy has no ALT key, steal the SHIFT key
|
||||
// (which isn't used much anyway)
|
||||
if (mod & KMOD_SHIFT)
|
||||
b |= Common::KBD_ALT;
|
||||
#else
|
||||
if (mod & KMOD_SHIFT)
|
||||
b |= Common::KBD_SHIFT;
|
||||
if (mod & KMOD_ALT)
|
||||
b |= Common::KBD_ALT;
|
||||
#endif
|
||||
if (mod & KMOD_CTRL)
|
||||
b |= Common::KBD_CTRL;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue