mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-20 17:31:08 +00:00
be a little more verbose
This commit is contained in:
parent
9baefa94bb
commit
a3ceb050a2
1 changed files with 2 additions and 2 deletions
|
@ -433,8 +433,8 @@ Hunk_AllocName (int size, const char *name)
|
|||
if (hunk_size - hunk_low_used - hunk_high_used < size)
|
||||
Sys_Error
|
||||
("Not enough RAM allocated. Try starting using \"-mem 16\" on "
|
||||
"the %s command line.",
|
||||
PROGRAM);
|
||||
"the %s command line. (%d - %d - %d < %d)",
|
||||
PROGRAM, hunk_size, hunk_low_used, hunk_high_used, size);
|
||||
|
||||
h = (hunk_t *) (hunk_base + hunk_low_used);
|
||||
hunk_low_used += size;
|
||||
|
|
Loading…
Reference in a new issue