diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2007-12-24 12:48:40 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2007-12-24 12:48:40 +0000 |
commit | ad916910b34d91db78c5eb6dc966745117bd0d6f (patch) | |
tree | 7cbc1f41d49a5715b723c325fdbf6f3aa7e5ebd9 /src/main.cpp | |
parent | 657f2b37b3b0b349cc7094541c6ade7d3d8e329d (diff) | |
download | mana-ad916910b34d91db78c5eb6dc966745117bd0d6f.tar.gz mana-ad916910b34d91db78c5eb6dc966745117bd0d6f.tar.bz2 mana-ad916910b34d91db78c5eb6dc966745117bd0d6f.tar.xz mana-ad916910b34d91db78c5eb6dc966745117bd0d6f.zip |
Disabled non-functional item shortcut window.
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp index 51d51243..4b6cfd3f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -48,7 +48,7 @@ #include "keyboardconfig.h" #include "game.h" #include "graphics.h" -#include "itemshortcut.h" +//#include "itemshortcut.h" #include "lockedarray.h" #include "localplayer.h" #include "log.h" @@ -308,7 +308,7 @@ void init_engine(const Options &options) graphics->_beginDraw(); // Initialize the item shortcuts. - itemShortcut = new ItemShortcut(); + //itemShortcut = new ItemShortcut(); gui = new Gui(graphics); state = UPDATE_STATE; /**< Initial game state */ @@ -337,7 +337,7 @@ void init_engine(const Options &options) void exit_engine() { // Before config.write() since it writes the shortcuts to the config - delete itemShortcut; + //delete itemShortcut; config.write(); |