From a3ceb050a20218966a1798d2144a95bff940b306 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 18 Mar 2007 12:53:59 +0000 Subject: [PATCH] be a little more verbose --- libs/util/zone.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/util/zone.c b/libs/util/zone.c index 3314283a9..b1aec8c3e 100644 --- a/libs/util/zone.c +++ b/libs/util/zone.c @@ -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;