diff options
author | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-05-23 07:12:02 +0000 |
---|---|---|
committer | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-05-23 07:12:02 +0000 |
commit | d436404bd7279a831804f0536e97e29dd484f7bb (patch) | |
tree | afd48d6a8e0aa78fb54743b3c179e5ef3f1cf65c /src/map/status.c | |
parent | bc6ac0943bd618ae8cc484ba517d75d417e612a7 (diff) | |
download | hercules-d436404bd7279a831804f0536e97e29dd484f7bb.tar.gz hercules-d436404bd7279a831804f0536e97e29dd484f7bb.tar.bz2 hercules-d436404bd7279a831804f0536e97e29dd484f7bb.tar.xz hercules-d436404bd7279a831804f0536e97e29dd484f7bb.zip |
* Changed enumerating defines into enumerations (related topic:264007).
- Minor fixups on few macros.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14831 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/map/status.c b/src/map/status.c index e68ebd291..d9a14dc23 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -38,10 +38,13 @@ //Regen related flags. -#define RGN_HP 0x01 -#define RGN_SP 0x02 -#define RGN_SHP 0x04 -#define RGN_SSP 0x08 +enum e_regen +{ + RGN_HP = 0x01, + RGN_SP = 0x02, + RGN_SHP = 0x04, + RGN_SSP = 0x08, +}; static int max_weight_base[CLASS_COUNT]; static int hp_coefficient[CLASS_COUNT]; |