From 5140bb8d7f5deeabe2149ddc3cb23f1f06e4684a Mon Sep 17 00:00:00 2001 From: mittorn Date: Sun, 7 Apr 2019 22:29:48 +0700 Subject: [PATCH] ref_soft: Use Q_memprint to report cache size --- r_surf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r_surf.c b/r_surf.c index 9a18a81e..db6aafa2 100644 --- a/r_surf.c +++ b/r_surf.c @@ -801,7 +801,7 @@ void R_InitCaches (void) // round up to page size size = (size + 8191) & ~8191; - gEngfuncs.Con_Printf ("%ik surface cache\n", size/1024); + gEngfuncs.Con_Printf ("%s surface cache\n", Q_memprint(size)); sc_size = size; if( sc_base )