]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/client/mapvoting.qc
Unify boolean constants
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / mapvoting.qc
index 8e4ede20449b51d45b5a0c6327db3bc5aed275c6..e82961e20fc5b69779dffd0675ac533bdc169855 100644 (file)
@@ -42,7 +42,7 @@ string MapVote_FormatMapItem(int id, string map, float count, float maxwidth, ve
        }
        else
                post = "";
-       maxwidth -= stringwidth(pre, FALSE, fontsize) + stringwidth(post, FALSE, fontsize);
+       maxwidth -= stringwidth(pre, false, fontsize) + stringwidth(post, false, fontsize);
        map = textShortenToWidth(map, maxwidth, fontsize, stringwidth_nocolors);
        return strcat(pre, map, post);
 }