diff options
author | Haru <haru@dotalux.com> | 2016-03-28 13:13:10 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-04-19 00:41:05 +0200 |
commit | e35bdc6974663ad11317892ba757dcb35b34be6d (patch) | |
tree | 95e597c126e911f8498616dcf926c010c719b7fc | |
parent | dff7391bd829eb73ad28b6f03a3310daad5605cc (diff) | |
download | hercules-e35bdc6974663ad11317892ba757dcb35b34be6d.tar.gz hercules-e35bdc6974663ad11317892ba757dcb35b34be6d.tar.bz2 hercules-e35bdc6974663ad11317892ba757dcb35b34be6d.tar.xz hercules-e35bdc6974663ad11317892ba757dcb35b34be6d.zip |
Corrected type for sd->fontcolor_tid
A timer ID should always be a signed int.
Signed-off-by: Haru <haru@dotalux.com>
-rw-r--r-- | src/map/pc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.h b/src/map/pc.h index a702b44bc..b648b7113 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -531,7 +531,7 @@ END_ZEROED_BLOCK; unsigned char channel_count; struct channel_data *gcbind; unsigned char fontcolor; - unsigned int fontcolor_tid; + int fontcolor_tid; int64 hchsysch_tick; /* [Ind/Hercules] */ |