summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2009-04-13 07:07:09 -0600
committerJared Adams <jaxad0127@gmail.com>2009-04-13 07:07:09 -0600
commitd8e3acb5253eb01231136b131e5b156034aaa7a9 (patch)
tree2caa4eced2c8726bfae0c203416f2ea0ff48a920 /src
parenta075dceef061d51a7dcc9f66665a5fe1b47fcb92 (diff)
downloadmana-client-d8e3acb5253eb01231136b131e5b156034aaa7a9.tar.gz
mana-client-d8e3acb5253eb01231136b131e5b156034aaa7a9.tar.bz2
mana-client-d8e3acb5253eb01231136b131e5b156034aaa7a9.tar.xz
mana-client-d8e3acb5253eb01231136b131e5b156034aaa7a9.zip
Fix an input bug
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 2320617c..7873d7db 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -629,7 +629,7 @@ void Game::handleInput()
}
*/
}
- else if (keyboard.isKeyActive(keyboard.KEY_TOGGLE_CHAT))
+ if (keyboard.isKeyActive(keyboard.KEY_TOGGLE_CHAT))
{
if (chatWindow->requestChatFocus())
used = true;