summaryrefslogtreecommitdiff
path: root/src/game.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.cpp')
-rw-r--r--src/game.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/game.cpp b/src/game.cpp
index 4726d2f96..fe459f804 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -210,9 +210,15 @@ static void createGuiWindows()
specialsWindow = new SpecialsWindow();
dropShortcutWindow = new ShortcutWindow("DropShortcut",
new DropShortcutContainer);
+
spellShortcutWindow = new ShortcutWindow("SpellShortcut",
- new SpellShortcutContainer,
- 265, 310);
+ 265, 328);
+ for (int f = 0; f < SPELL_SHORTCUT_TABS; f ++)
+ {
+ spellShortcutWindow->addTab(toString(f + 1),
+ new SpellShortcutContainer(f));
+ }
+
botCheckerWindow = new BotCheckerWindow();
whoIsOnline = new WhoIsOnline();
killStats = new KillStats;