summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDavid Athay <ko2fan@gmail.com>2008-07-22 14:50:19 +0000
committerDavid Athay <ko2fan@gmail.com>2008-07-22 14:50:19 +0000
commit93459202b58b6199e588b5c6768ef8889aa2aa9f (patch)
tree373ad72183eb256c5377bada7cef7a50146eda8d /src
parent157fbba039dc8ee0f7ed414791c72277aaf80831 (diff)
downloadmana-client-93459202b58b6199e588b5c6768ef8889aa2aa9f.tar.gz
mana-client-93459202b58b6199e588b5c6768ef8889aa2aa9f.tar.bz2
mana-client-93459202b58b6199e588b5c6768ef8889aa2aa9f.tar.xz
mana-client-93459202b58b6199e588b5c6768ef8889aa2aa9f.zip
Reverted the Alt-Gr fix as it did not work.
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 0c855669..8961c859 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 && event.key.keysym.mod ^ KMOD_CTRL)
+ if (event.key.keysym.mod & KMOD_LALT)
#else
if (event.key.keysym.mod & KMOD_LMETA)
#endif