diff options
author | Dennis Friis <peavey@placid.dk> | 2008-11-06 02:22:47 +0000 |
---|---|---|
committer | Dennis Friis <peavey@placid.dk> | 2008-11-06 02:22:47 +0000 |
commit | 3927112cf6e35bc582fa6c4de73875e423b8f86a (patch) | |
tree | 797e094a8d607dce4cd98e1f2fe102990a0a077e /src/game.cpp | |
parent | 1afaba7d73a6158abfbbbcc7d881170e5b3ddd50 (diff) | |
download | mana-3927112cf6e35bc582fa6c4de73875e423b8f86a.tar.gz mana-3927112cf6e35bc582fa6c4de73875e423b8f86a.tar.bz2 mana-3927112cf6e35bc582fa6c4de73875e423b8f86a.tar.xz mana-3927112cf6e35bc582fa6c4de73875e423b8f86a.zip |
Fix a missing brace that got lost on last commit (r4927)
Diffstat (limited to 'src/game.cpp')
-rw-r--r-- | src/game.cpp | 1 |
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; |