]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - zone.c
Remove the NG_MENU additions as it has never really been used.
[xonotic/darkplaces.git] / zone.c
diff --git a/zone.c b/zone.c
index 68958fd06371f8805926218f2b393a569333dac4..32655d9ad143e38fa8e9d390d6f62dd2d4b8fcd4 100644 (file)
--- a/zone.c
+++ b/zone.c
@@ -393,7 +393,7 @@ void Mem_ExpandableArray_FreeArray(memexpandablearray_t *l)
        size_t i;
        if (l->maxarrays)
        {
-               for (i = 0;i != l->numarrays;l++)
+               for (i = 0;i != l->numarrays;i++)
                        Mem_Free(l->arrays[i].data);
                Mem_Free(l->arrays);
        }
@@ -553,6 +553,7 @@ void MemStats_f(void)
 {
        Mem_CheckSentinelsGlobal();
        R_TextureStats_Print(false, false, true);
+       GL_Mesh_ListVBOs(false);
        Mem_PrintStats();
 }