diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-04-11 08:58:32 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-04-11 08:58:52 -0600 |
commit | 14a6e6a4bc5d39ddf8f31efc07a5e2493a6f6d0a (patch) | |
tree | da62e5694614e55df1c1a0fc5d5676ac7415daa6 /src/inventory.h | |
parent | 78cab005ab427e64ccdf8ba8f6ca7d4c6f6bd4b4 (diff) | |
download | mana-14a6e6a4bc5d39ddf8f31efc07a5e2493a6f6d0a.tar.gz mana-14a6e6a4bc5d39ddf8f31efc07a5e2493a6f6d0a.tar.bz2 mana-14a6e6a4bc5d39ddf8f31efc07a5e2493a6f6d0a.tar.xz mana-14a6e6a4bc5d39ddf8f31efc07a5e2493a6f6d0a.zip |
Remove more support #ifdefs
Diffstat (limited to 'src/inventory.h')
-rw-r--r-- | src/inventory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inventory.h b/src/inventory.h index 358c93e3..cfd72089 100644 --- a/src/inventory.h +++ b/src/inventory.h @@ -26,10 +26,10 @@ class Item; #ifdef EATHENA_SUPPORT const int INVENTORY_SIZE = 102; -const int STORAGE_SIZE = 301; #else const int INVENTORY_SIZE = 50; #endif +const int STORAGE_SIZE = 301; class Inventory { |