diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-11 18:45:43 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-11 18:45:43 +0000 |
commit | 354a5439cd4f7b4e1454cb37637ce07af279466c (patch) | |
tree | de0749dacacf28d5e6b962eb4db40698428a19a1 /src/map/map.h | |
parent | f30f40066e831e4cc0c4326f96d9358554c51791 (diff) | |
download | hercules-354a5439cd4f7b4e1454cb37637ce07af279466c.tar.gz hercules-354a5439cd4f7b4e1454cb37637ce07af279466c.tar.bz2 hercules-354a5439cd4f7b4e1454cb37637ce07af279466c.tar.xz hercules-354a5439cd4f7b4e1454cb37637ce07af279466c.zip |
- Implemented use of ers for skill_unit_groups to reduce memory usage. NEEDS TESTING
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5991 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.h')
-rw-r--r-- | src/map/map.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/map.h b/src/map/map.h index 50f8693b7..9e13c3985 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -349,7 +349,7 @@ struct unit_data { struct block_list *bl;
struct walkpath_data walkpath;
struct skill_timerskill skilltimerskill[MAX_SKILLTIMERSKILL];
- struct skill_unit_group skillunit[MAX_SKILLUNITGROUP];
+ struct skill_unit_group *skillunit[MAX_SKILLUNITGROUP];
struct skill_unit_group_tickset skillunittick[MAX_SKILLUNITGROUPTICKSET];
short attacktarget_lv;
short to_x,to_y;
|