summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDavid Athay <ko2fan@gmail.com>2008-07-21 16:49:22 +0000
committerDavid Athay <ko2fan@gmail.com>2008-07-21 16:49:22 +0000
commit157fbba039dc8ee0f7ed414791c72277aaf80831 (patch)
treef21c74ac57ecb6e953b07712724ecd713d1dc88d /src
parent7531e86b5c84c66fc7e46391a133accfb51b0141 (diff)
downloadmana-client-157fbba039dc8ee0f7ed414791c72277aaf80831.tar.gz
mana-client-157fbba039dc8ee0f7ed414791c72277aaf80831.tar.bz2
mana-client-157fbba039dc8ee0f7ed414791c72277aaf80831.tar.xz
mana-client-157fbba039dc8ee0f7ed414791c72277aaf80831.zip
Commit of Alt-Gr fix for Rotonen
Diffstat (limited to 'src')
-rw-r--r--src/game.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game.cpp b/src/game.cpp
index 58c28640..0c855669 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -465,7 +465,7 @@ void Game::handleInput()
// Keys pressed together with Alt/Meta
// Emotions and some internal gui windows
#ifndef __APPLE__
- if (event.key.keysym.mod & KMOD_ALT)
+ if (event.key.keysym.mod & KMOD_ALT && event.key.keysym.mod ^ KMOD_CTRL)
#else
if (event.key.keysym.mod & KMOD_LMETA)
#endif