summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2011-08-18 01:40:43 +0200
committerYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2011-08-18 01:40:43 +0200
commit3b7740f133e195b0a0b11090ea8c2b8a7b64411c (patch)
tree5e1494b942fe4050d147325951c1401dc7e29c31
parent9ca2198b767e1bf810aa5b75657f0d18ce06a57b (diff)
downloadmana-client-3b7740f133e195b0a0b11090ea8c2b8a7b64411c.tar.gz
mana-client-3b7740f133e195b0a0b11090ea8c2b8a7b64411c.tar.bz2
mana-client-3b7740f133e195b0a0b11090ea8c2b8a7b64411c.tar.xz
mana-client-3b7740f133e195b0a0b11090ea8c2b8a7b64411c.zip
Got rid of the superfluous definition of the slot number for tA.
-rw-r--r--src/equipment.h2
-rw-r--r--src/net/tmwa/inventoryhandler.h6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/equipment.h b/src/equipment.h
index 2ef970ea..67317d39 100644
--- a/src/equipment.h
+++ b/src/equipment.h
@@ -22,8 +22,6 @@
#ifndef EQUIPMENT_H
#define EQUIPMENT_H
-#define EQUIPMENT_SIZE 11
-
class Item;
class Equipment
diff --git a/src/net/tmwa/inventoryhandler.h b/src/net/tmwa/inventoryhandler.h
index 218723e6..bbb734e7 100644
--- a/src/net/tmwa/inventoryhandler.h
+++ b/src/net/tmwa/inventoryhandler.h
@@ -34,6 +34,8 @@
#include "net/tmwa/messagehandler.h"
+#include "resources/iteminfo.h"
+
#include <list>
namespace TmwAthena {
@@ -54,7 +56,7 @@ class EquipBackend : public Equipment::Backend
void clear()
{
- for (int i = 0; i < EQUIPMENT_SIZE; i++)
+ for (int i = 0; i < EQUIP_VECTOR_END; i++)
{
if (mEquipment[i] != -1)
{
@@ -83,7 +85,7 @@ class EquipBackend : public Equipment::Backend
}
private:
- int mEquipment[EQUIPMENT_SIZE];
+ int mEquipment[EQUIP_VECTOR_END];
};
/**