diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-04-05 19:40:49 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-04-05 19:40:49 -0600 |
commit | 9078373860729cdf80db8d09cbdee478dc54ec64 (patch) | |
tree | 3e27392dfbca5fe0368d99d577044a6d90bbb41a /src/item.cpp | |
parent | a0c7d1f61783e77e552896824855377e4bb43f8d (diff) | |
download | mana-client-9078373860729cdf80db8d09cbdee478dc54ec64.tar.gz mana-client-9078373860729cdf80db8d09cbdee478dc54ec64.tar.bz2 mana-client-9078373860729cdf80db8d09cbdee478dc54ec64.tar.xz mana-client-9078373860729cdf80db8d09cbdee478dc54ec64.zip |
Remove some more #ifdefs
Diffstat (limited to 'src/item.cpp')
-rw-r--r-- | src/item.cpp | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/item.cpp b/src/item.cpp index 6f04b879..2fadc035 100644 --- a/src/item.cpp +++ b/src/item.cpp @@ -25,17 +25,10 @@ #include "resources/iteminfo.h" #include "resources/resourcemanager.h" -Item::Item(int id, int quantity, bool equipment -#ifdef EATHENA_SUPPORT - , bool equipped -#endif - ): +Item::Item(int id, int quantity, bool equipment, bool equipped): mImage(0), mQuantity(quantity), - mEquipment(equipment) -#ifdef EATHENA_SUPPORT - , mEquipped(equipped) -#endif + mEquipment(equipment), mEquipped(equipped) { setId(id); } |