ref_soft: Use Q_memprint to report cache size

This commit is contained in:
mittorn 2019-04-07 22:29:48 +07:00
parent 320a3b0834
commit 5140bb8d7f
1 changed files with 1 additions and 1 deletions

View File

@ -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 )