mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-22 03:11:27 +00:00
Fix the peak
This commit is contained in:
parent
7ea67748fa
commit
564cac859a
1 changed files with 1 additions and 1 deletions
2
stat.c
2
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
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue