diff options
author | Philipp Sehmisch <crush@themanaworld.org> | 2008-12-01 22:26:20 +0100 |
---|---|---|
committer | Philipp Sehmisch <crush@themanaworld.org> | 2008-12-01 22:26:20 +0100 |
commit | 017e5dd93498dd3dcf168bec95725423564c177c (patch) | |
tree | 4f16d66e9c62f73cd4d773f4f51ee3352fc29ce5 /src/gui | |
parent | 53ee2ec3a7efd6ff62bff3abdb87eccec6fbe5c9 (diff) | |
download | mana-017e5dd93498dd3dcf168bec95725423564c177c.tar.gz mana-017e5dd93498dd3dcf168bec95725423564c177c.tar.bz2 mana-017e5dd93498dd3dcf168bec95725423564c177c.tar.xz mana-017e5dd93498dd3dcf168bec95725423564c177c.zip |
Fixed a compilation error caused by path relevance.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/inventorywindow.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/inventorywindow.cpp b/src/gui/inventorywindow.cpp index 6a5a8b37..3eae6c60 100644 --- a/src/gui/inventorywindow.cpp +++ b/src/gui/inventorywindow.cpp @@ -28,12 +28,13 @@ #include "button.h" #include "gui.h" -#include "inventory.h" #include "item_amount.h" #include "itemcontainer.h" #include "scrollarea.h" #include "viewport.h" - +
+
+#include "../inventory.h" #include "../item.h" #include "../localplayer.h" |