From: Mircea Kitsune Date: Sat, 14 Jan 2012 11:53:08 +0000 (+0200) Subject: Remove an unneeded execution X-Git-Tag: xonotic-v0.6.0~110^2^2~18 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=b937a6aa2778f27f734c7eca3218ce4924697e65;p=xonotic%2Fxonotic-data.pk3dir.git Remove an unneeded execution --- diff --git a/qcsrc/common/util.qh b/qcsrc/common/util.qh index 8e0868223..d55ffd73f 100644 --- a/qcsrc/common/util.qh +++ b/qcsrc/common/util.qh @@ -295,7 +295,7 @@ void Shutdown(); // gets the total number of tags on model v #define TOTAL_TAGS(v) skel_get_numbones(skel_create(v.modelindex)); skel_delete(v.modelindex) // loops through the tags of model v using counter tagnum -#define FOR_EACH_TAG(v) float tagnum, totaltags; totaltags = TOTAL_TAGS(v); for(tagnum = 0, gettaginfo(v, tagnum); tagnum < totaltags; tagnum++, gettaginfo(v, tagnum)) +#define FOR_EACH_TAG(v) float tagnum, totaltags; totaltags = TOTAL_TAGS(v); for(tagnum = 0; tagnum < totaltags; tagnum++, gettaginfo(v, tagnum)) #endif #ifdef SVQC void WriteApproxPastTime(float dst, float t);