mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-19 06:40:49 +00:00
Fix memdump printing
This commit is contained in:
parent
f2b21158d8
commit
1c51fb80eb
1 changed files with 2 additions and 2 deletions
4
util.c
4
util.c
|
@ -192,8 +192,8 @@ void util_meminfo() {
|
|||
Total peak memory: %f (MB)\n\
|
||||
Total leaked memory: %f (MB) in %llu allocations\n",
|
||||
mem_at,
|
||||
(float)(mem_dt) / 1048576.0f,
|
||||
mem_ab,
|
||||
mem_dt,
|
||||
(float)(mem_ab) / 1048576.0f,
|
||||
(float)(mem_db) / 1048576.0f,
|
||||
(float)(mem_pk) / 1048576.0f,
|
||||
(float)(mem_ab - mem_db) / 1048576.0f,
|
||||
|
|
Loading…
Reference in a new issue