]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/util.qc
micro-optimization chore: in for-loops change all post-{in,de}crements to pre-{in...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / util.qc
index 1bb77a1f5af176cb800e0894dace887c0b6ba49c..d9a098691b11e3133493bcbf73fd696fc119b839 100644 (file)
@@ -239,7 +239,7 @@ string build_mutator_list(string s)
                n = tokenizebyseparator(s, ", ");
        }
        string s2 = "";
-       for (string arg = ""; i < n; i++)
+       for (string arg = ""; i < n; ++i)
        {
                if (i >= 0) arg = argv(i);
                // cond is the condition for showing the mutator enabled in the menu