diff options
author | toms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-20 20:39:56 +0000 |
---|---|---|
committer | toms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-20 20:39:56 +0000 |
commit | 662e132e55d4483ab2bb84087b8f7d9908bf504b (patch) | |
tree | 94325ab6f0e144074ca0cadcb725c5f7ad3bcd10 /src/map | |
parent | 4a440b794f190b5feed86f7c21fd02133164b1f6 (diff) | |
download | hercules-662e132e55d4483ab2bb84087b8f7d9908bf504b.tar.gz hercules-662e132e55d4483ab2bb84087b8f7d9908bf504b.tar.bz2 hercules-662e132e55d4483ab2bb84087b8f7d9908bf504b.tar.xz hercules-662e132e55d4483ab2bb84087b8f7d9908bf504b.zip |
Fixed a warning when using cap_value(x, 0, x) on an unsigned value
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8388 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/map.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/map.h b/src/map/map.h index e1bcf2169..a23133150 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -163,7 +163,7 @@ enum { #define map_flag_gvg(m) (map[m].flag.gvg || (agit_flag && map[m].flag.gvg_castle))
//Caps values to min/max
-#define cap_value(a, min, max) (a>max?max:a<min?min:a)
+#define cap_value(a, min, max) (a>=max?max:a<=min?min:a)
//This stackable implementation does not means a BL can be more than one type at a time, but it's
//meant to make it easier to check for multiple types at a time on invocations such as
|