]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
ONE BYTE.
authorRudolf Polzer <divverent@xonotic.org>
Fri, 11 Oct 2013 06:06:25 +0000 (08:06 +0200)
committerRudolf Polzer <divverent@xonotic.org>
Fri, 11 Oct 2013 06:07:18 +0000 (08:07 +0200)
qcsrc/menu/xonotic/serverlist.c

index 9b943b16dc63829d9812bc453e7329abd94261ec..334c70c8319d1001e157cac472d12b190966641f 100644 (file)
@@ -701,7 +701,6 @@ void XonoticServerList_draw(entity me)
                                // Starts at first. This breaks the loop
                                // invariant in the binary search and thus has
                                // to be handled separately.
-                               print(sprintf("hit: x='%d', dc='%d', first='%d', last='%d', catf='%d', catl='%d'.\n", x, category_draw_count, first, last, catf, catl));
                                if(gethostcachenumber(SLIST_FIELD_CATEGORY, first) != x)
                                        error("Category mismatch I");
                                if(first > 0)
@@ -734,7 +733,6 @@ void XonoticServerList_draw(entity me)
                                        }
                                }
                                if (catl == x) {
-                                       print(sprintf("hit: x='%d', dc='%d', first='%d', last='%d', catf='%d', catl='%d'.\n", x, category_draw_count, first, last, catf, catl));
                                        if(gethostcachenumber(SLIST_FIELD_CATEGORY, last) != x)
                                                error("Category mismatch III");
                                        if(last > 0)
@@ -1353,7 +1351,7 @@ float XonoticServerList_getItemStart(entity me, float item) {
        float start = item;
        for (i = 0; i < category_draw_count; ++i) {
                float first = i + category_item[i];
-               if (item >= first)
+               if (item > first)
                        start += me.categoriesHeight - 1;
        }
        return me.itemHeight * start;