X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fcommon%2Futil.qh;h=effdb3cf7823ff8089ed0099a1808fd5e37e3e11;hp=166af391e9574b7d6e5e7f7867bab05ab43c2e7f;hb=bc20da5a3271b337049a25f68ddecad472b8db98;hpb=d26febb6c10869f015b615f0736687b242a1fccb;ds=sidebyside diff --git a/qcsrc/common/util.qh b/qcsrc/common/util.qh index 166af391e9..effdb3cf78 100644 --- a/qcsrc/common/util.qh +++ b/qcsrc/common/util.qh @@ -52,7 +52,7 @@ void ACCUMULATE_call(string func) // used for simplifying ACCUMULATE_FUNCTIONs #define SET_FIRST_OR_LAST(input,first,count) if(!input) { input = (first + count); } #define SET_FIELD_COUNT(field,first,count) if(!field) { field = (first + count); ++count; } -#define CHECK_MAX_COUNT(name,max,count,type) if(count == max) { error(strcat("Maximum ", type, " hit: ", #name, ": ", ftos(count), ".\n")); } +#define CHECK_MAX_COUNT(name,max,count,type) if(count > max) { error(strcat("Maximum ", type, " hit: ", #name, ": ", ftos(count), ".\n")); } // this returns a tempstring containing a copy of s with additional \n newlines added, it also replaces \n in the text with a real newline // NOTE: s IS allowed to be a tempstring