From bcdbd9084942c75a3a56beec7e8fe508fb6ba568 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sun, 24 Jun 2007 18:51:06 +0000 Subject: Not necessary to have a LINUPY hack in the GP2x backend svn-id: r27696 --- backends/platform/gp2x/events.cpp | 7 ------- 1 file changed, 7 deletions(-) (limited to 'backends/platform') 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; -- cgit v1.2.3