diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-09-21 22:22:35 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-09-21 23:18:40 +0300 |
commit | c11f17020732d96e6830deadb8272f66c9af623b (patch) | |
tree | 23694297ff60d27ee6d60aa041141a6264a244db /src/common/utils.h | |
parent | c3f46b2c8f3d05a44c2d7388756666e98b9323bb (diff) | |
download | hercules-c11f17020732d96e6830deadb8272f66c9af623b.tar.gz hercules-c11f17020732d96e6830deadb8272f66c9af623b.tar.bz2 hercules-c11f17020732d96e6830deadb8272f66c9af623b.tar.xz hercules-c11f17020732d96e6830deadb8272f66c9af623b.zip |
Convert some functions from int32 types to int64.
This mainly need for base and job exp, because now they using int64 type.
Diffstat (limited to 'src/common/utils.h')
-rw-r--r-- | src/common/utils.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/utils.h b/src/common/utils.h index 9d3c323ef..e77c63cf2 100644 --- a/src/common/utils.h +++ b/src/common/utils.h @@ -44,6 +44,7 @@ bool exists(const char* filename); /// calculates the value of A / B, in percent (rounded down) unsigned int get_percentage(const unsigned int A, const unsigned int B); +uint64 get_percentage64(const uint64 A, const uint64 B); int64 apply_percentrate64(int64 value, int rate, int maxrate); int apply_percentrate(int value, int rate, int maxrate); |