瀏覽代碼

Fixed a warning when using cap_value(x, 0, x) on an unsigned value

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@8388 54d463be-8e91-2dee-dedb-b68131a5f0ec
toms 19 年之前
父節點
當前提交
b1227ed363
共有 2 個文件被更改,包括 2 次插入1 次删除
  1. 1 0
      Changelog-Trunk.txt
  2. 1 1
      src/map/map.h

+ 1 - 0
Changelog-Trunk.txt

@@ -3,6 +3,7 @@ Date	Added
 AS OF SVN REV. 5091, WE ARE NOW USING TRUNK.  ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK.
 IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
 2006/08/20
+	* Fixed a warning when using cap_value(x, 0, x) on an unsigned value [Toms]
 	* Added clif_skill_fail for homunc to skill_castend_id & skill_castend_pos [Toms]
 	* Fixed homunc skill 8016 not considered as homunc skill [Toms]
 	* @useskill will now cause your homun to use the skill instead of you if

+ 1 - 1
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