diff options
author | Max Horn | 2007-06-24 18:51:06 +0000 |
---|---|---|
committer | Max Horn | 2007-06-24 18:51:06 +0000 |
commit | bcdbd9084942c75a3a56beec7e8fe508fb6ba568 (patch) | |
tree | d3b0bdf17434d83fd5fc818ff641fc6cd5c1d9e0 | |
parent | 0b1ce0774a8891081c380cf8b822cfe2d4f440d5 (diff) | |
download | scummvm-rg350-bcdbd9084942c75a3a56beec7e8fe508fb6ba568.tar.gz scummvm-rg350-bcdbd9084942c75a3a56beec7e8fe508fb6ba568.tar.bz2 scummvm-rg350-bcdbd9084942c75a3a56beec7e8fe508fb6ba568.zip |
Not necessary to have a LINUPY hack in the GP2x backend
svn-id: r27696
-rw-r--r-- | backends/platform/gp2x/events.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/backends/platform/gp2x/events.cpp b/backends/platform/gp2x/events.cpp index 72b188afd2..ff3c0e65f0 100644 --- a/backends/platform/gp2x/events.cpp +++ b/backends/platform/gp2x/events.cpp @@ -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; |