summaryrefslogtreecommitdiff
path: root/src/game.cpp
diff options
context:
space:
mode:
authorDennis Friis <peavey@placid.dk>2008-11-06 02:22:47 +0000
committerDennis Friis <peavey@placid.dk>2008-11-06 02:22:47 +0000
commit3927112cf6e35bc582fa6c4de73875e423b8f86a (patch)
tree797e094a8d607dce4cd98e1f2fe102990a0a077e /src/game.cpp
parent1afaba7d73a6158abfbbbcc7d881170e5b3ddd50 (diff)
downloadmana-client-3927112cf6e35bc582fa6c4de73875e423b8f86a.tar.gz
mana-client-3927112cf6e35bc582fa6c4de73875e423b8f86a.tar.bz2
mana-client-3927112cf6e35bc582fa6c4de73875e423b8f86a.tar.xz
mana-client-3927112cf6e35bc582fa6c4de73875e423b8f86a.zip
Fix a missing brace that got lost on last commit (r4927)
Diffstat (limited to 'src/game.cpp')
-rw-r--r--src/game.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/game.cpp b/src/game.cpp
index fc9183d4..e08f45e4 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -666,6 +666,7 @@ void Game::handleInput()
const int tKey = keyboard.getKeyIndex(event.key.keysym.sym);
// Do not activate shortcuts if tradewindow is visible
if (!tradeWindow->isVisible())
+ {
// Checks if any item shortcut is pressed.
for (int i = KeyboardConfig::KEY_SHORTCUT_0;
i <= KeyboardConfig::KEY_SHORTCUT_9;