diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2004-12-25 21:27:53 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2004-12-25 21:27:53 +0000 |
commit | d4564037ea7d174c4512b0c6de62359c5ca2de80 (patch) | |
tree | 04f60cbfcdd88365b406afda03fd3f6644ac4659 | |
parent | 6476f87c63195cc5940b638ba946759f18b597fd (diff) | |
download | mana-client-d4564037ea7d174c4512b0c6de62359c5ca2de80.tar.gz mana-client-d4564037ea7d174c4512b0c6de62359c5ca2de80.tar.bz2 mana-client-d4564037ea7d174c4512b0c6de62359c5ca2de80.tar.xz mana-client-d4564037ea7d174c4512b0c6de62359c5ca2de80.zip |
Little initialization fix for show_inventory.
-rw-r--r-- | src/gui/inventory.cpp | 9 | ||||
-rw-r--r-- | src/gui/inventory.h | 6 |
2 files changed, 12 insertions, 3 deletions
diff --git a/src/gui/inventory.cpp b/src/gui/inventory.cpp index 9d48f0fb..5c5f5782 100644 --- a/src/gui/inventory.cpp +++ b/src/gui/inventory.cpp @@ -31,6 +31,15 @@ DIALOG inventory_dialog[] = { DIALOG_PLAYER *inventory_player; +TmwInventory::TmwInventory() +{ + show_inventory = false; +} + +TmwInventory::~TmwInventory() +{ +} + /** Initialize inventory */ void TmwInventory::create(int tempxpos, int tempypos) { itemset = load_datafile("./data/graphic/items.dat"); diff --git a/src/gui/inventory.h b/src/gui/inventory.h index fa06f2eb..19b183d2 100644 --- a/src/gui/inventory.h +++ b/src/gui/inventory.h @@ -44,9 +44,9 @@ struct itemHolder { // the holder of a item }; class TmwInventory { - public: - TmwInventory() {}; - ~TmwInventory() {}; + public: + TmwInventory(); + ~TmwInventory(); void create(int x, int y); // create the window void draw(BITMAP *); // draw the window (if areDisplaying != 0 ) |