diff options
author | Haru <haru@dotalux.com> | 2016-02-20 15:20:42 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-03-20 18:32:08 +0100 |
commit | d9ffa7399bc88ecfaf1f3b17f9f04a743b7f2dd2 (patch) | |
tree | 33a179c32d67e49bddd7d70db6280764b6c0173b /src/map/itemdb.h | |
parent | 9975335df7aa30d687bf47aa1fe01f0c4993849d (diff) | |
download | hercules-d9ffa7399bc88ecfaf1f3b17f9f04a743b7f2dd2.tar.gz hercules-d9ffa7399bc88ecfaf1f3b17f9f04a743b7f2dd2.tar.bz2 hercules-d9ffa7399bc88ecfaf1f3b17f9f04a743b7f2dd2.tar.xz hercules-d9ffa7399bc88ecfaf1f3b17f9f04a743b7f2dd2.zip |
Dropped typedef from DBMap
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/itemdb.h')
-rw-r--r-- | src/map/itemdb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/itemdb.h b/src/map/itemdb.h index 58d19db05..d33805174 100644 --- a/src/map/itemdb.h +++ b/src/map/itemdb.h @@ -589,10 +589,10 @@ struct itemdb_interface { struct item_combo **combos; unsigned short combo_count; /* */ - DBMap *names; + struct DBMap *names; /* */ struct item_data *array[MAX_ITEMDB]; - DBMap *other;// int nameid -> struct item_data* + struct DBMap *other;// int nameid -> struct item_data* struct item_data dummy; //This is the default dummy item used for non-existant items. [Skotlex] /* */ void (*read_groups) (void); |