]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
Fix the peak
authorDale Weiler <killfieldengine@gmail.com>
Sun, 2 Jun 2013 08:28:56 +0000 (08:28 +0000)
committerDale Weiler <killfieldengine@gmail.com>
Sun, 2 Jun 2013 08:28:56 +0000 (08:28 +0000)
stat.c

diff --git a/stat.c b/stat.c
index 5c1a6f486e2dfb2a9cdcb598da30e14638e41207..372cc143205ee5ce937fac666735fa715ac6adb2 100644 (file)
--- a/stat.c
+++ b/stat.c
@@ -515,7 +515,7 @@ static void stat_dump_mem_info() {
         stat_mem_deallocated_total,
         (float)(stat_mem_allocated)                        / 1048576.0f,
         (float)(stat_mem_deallocated)                      / 1048576.0f,
-        (float)(stat_mem_high)                             / 1048576.0f,
+        (float)(stat_mem_peak)                             / 1048576.0f,
         (float)(stat_mem_allocated - stat_mem_deallocated) / 1048576.0f,
         stat_mem_allocated_total - stat_mem_deallocated_total
     );