diff options
author | Haru <haru@dotalux.com> | 2016-07-14 03:28:53 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-07-14 03:28:53 +0200 |
commit | 7bcb379c83327331bda05a23000dc0a6bbbefa48 (patch) | |
tree | 5c0911e81606e0c41008a7f8e0b990114ae24051 /src/common/mmo.h | |
parent | 968e3cddbd3394607ae34f56ba8ee12d78bad1a5 (diff) | |
download | hercules-7bcb379c83327331bda05a23000dc0a6bbbefa48.tar.gz hercules-7bcb379c83327331bda05a23000dc0a6bbbefa48.tar.bz2 hercules-7bcb379c83327331bda05a23000dc0a6bbbefa48.tar.xz hercules-7bcb379c83327331bda05a23000dc0a6bbbefa48.zip |
Changed mmo_charstatus::base_level and mmo_charstatus::job_level to int
Fixes several -Wsign-compare issues
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/common/mmo.h')
-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 3d3360132..7e01d6960 100644 --- a/src/common/mmo.h +++ b/src/common/mmo.h @@ -590,7 +590,7 @@ struct mmo_charstatus { short robe; char name[NAME_LENGTH]; - unsigned int base_level,job_level; + int base_level, job_level; short str,agi,vit,int_,dex,luk; unsigned char slot,sex; |