summaryrefslogtreecommitdiff
path: root/src/game.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-08-28 13:20:56 +0300
committerAndrei Karas <akaras@inbox.ru>2013-08-29 00:18:56 +0300
commit72cc5d13430dff4e41c77482eebd9e5e421fe739 (patch)
tree60faa271d866cb464f2ed15892605001eb84253a /src/game.cpp
parente71b8c2bd9722aae29ed36b78806867964a3121d (diff)
downloadplus-72cc5d13430dff4e41c77482eebd9e5e421fe739.tar.gz
plus-72cc5d13430dff4e41c77482eebd9e5e421fe739.tar.bz2
plus-72cc5d13430dff4e41c77482eebd9e5e421fe739.tar.xz
plus-72cc5d13430dff4e41c77482eebd9e5e421fe739.zip
allow open help and did you know window before login into game.
Diffstat (limited to 'src/game.cpp')
-rw-r--r--src/game.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/game.cpp b/src/game.cpp
index 962d8562e..0993ef34d 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -215,7 +215,6 @@ static void createGuiWindows()
shopWindow = new ShopWindow;
skillDialog = new SkillDialog;
minimap = new Minimap;
- helpWindow = new HelpWindow;
debugWindow = new DebugWindow;
itemShortcutWindow = new ShortcutWindow(
"ItemShortcut", "items.xml", 83, 460);
@@ -225,7 +224,6 @@ static void createGuiWindows()
itemShortcutWindow->addTab(toString(f + 1),
new ItemShortcutContainer(f));
}
- didYouKnowWindow = new DidYouKnowWindow;
if (config.getBoolValue("showDidYouKnow"))
{
didYouKnowWindow->setVisible(true);
@@ -355,7 +353,6 @@ static void destroyGuiWindows()
del_0(equipmentWindow)
del_0(beingEquipmentWindow)
del_0(tradeWindow)
- del_0(helpWindow)
del_0(debugWindow)
del_0(itemShortcutWindow)
del_0(emoteShortcutWindow)
@@ -370,7 +367,6 @@ static void destroyGuiWindows()
del_0(questsWindow);
del_0(whoIsOnline);
del_0(killStats);
- del_0(didYouKnowWindow);
if (auctionManager && AuctionManager::getEnableAuctionBot())
auctionManager->reload();