diff options
author | Haru <haru@dotalux.com> | 2016-07-14 04:11:27 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-07-14 04:11:27 +0200 |
commit | 6c0b298c869913105e4c4d29a6580bf68cd89f55 (patch) | |
tree | 608154d6fb2e2a220249fd711c6e23fa8cb98937 /src/common | |
parent | d85daf0f76485c8a3f065d79fb23dc3566aa81cd (diff) | |
download | hercules-6c0b298c869913105e4c4d29a6580bf68cd89f55.tar.gz hercules-6c0b298c869913105e4c4d29a6580bf68cd89f55.tar.bz2 hercules-6c0b298c869913105e4c4d29a6580bf68cd89f55.tar.xz hercules-6c0b298c869913105e4c4d29a6580bf68cd89f55.zip |
Changed mmo_charstatus::status_point and mmo_charstatus::skill_point to int
Fixes several -Wsign-compare issues
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/mmo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/mmo.h b/src/common/mmo.h index 7e01d6960..0a5d9d053 100644 --- a/src/common/mmo.h +++ b/src/common/mmo.h @@ -570,7 +570,7 @@ struct mmo_charstatus { int bank_vault; short class_; - unsigned int status_point,skill_point; + int status_point, skill_point; int hp,max_hp,sp,max_sp; unsigned int option; short manner; // Defines how many minutes a char will be muted, each negative point is equivalent to a minute. |