diff options
author | xazax-hun <xazax-hun@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-12-22 18:28:18 +0000 |
---|---|---|
committer | xazax-hun <xazax-hun@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-12-22 18:28:18 +0000 |
commit | 4174099a87afe0a6082a3272f71a5e8d23e33869 (patch) | |
tree | ba6cd036a56d28664d238f99127a36cc558e701a /src/common/mmo.h | |
parent | fbd18e2ae54bbf77e362614a461deafadd4b6bac (diff) | |
download | hercules-4174099a87afe0a6082a3272f71a5e8d23e33869.tar.gz hercules-4174099a87afe0a6082a3272f71a5e8d23e33869.tar.bz2 hercules-4174099a87afe0a6082a3272f71a5e8d23e33869.tar.xz hercules-4174099a87afe0a6082a3272f71a5e8d23e33869.zip |
Added a memory optimization. bugreport:4972
Added more optimizations to some statuses. Releated: bugreport:4007
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15215 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/mmo.h')
-rw-r--r-- | src/common/mmo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/mmo.h b/src/common/mmo.h index 0d14970d1..26e4e1b4b 100644 --- a/src/common/mmo.h +++ b/src/common/mmo.h @@ -222,8 +222,8 @@ enum e_skill_flag struct s_skill { unsigned short id; - unsigned short lv; - unsigned short flag; // see enum e_skill_flag + unsigned char lv; + unsigned char flag; // see enum e_skill_flag }; struct global_reg { |