From 70cacb435154def1eda77fe9f475e65cb5e4c42a Mon Sep 17 00:00:00 2001 From: lordhavoc Date: Sat, 23 Feb 2002 09:30:15 +0000 Subject: [PATCH] removed -zone mention from SZ_GetSpace overflow error git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@1550 d7cf8633-e32d-0410-b094-e92efae38249 --- common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.c b/common.c index 4468bba6..b1c684b4 100644 --- a/common.c +++ b/common.c @@ -793,7 +793,7 @@ void *SZ_GetSpace (sizebuf_t *buf, int length) if (buf->cursize + length > buf->maxsize) { if (!buf->allowoverflow) - Host_Error ("SZ_GetSpace: overflow without allowoverflow set - use -zone on the commandline for more zone memory, default: 128k (quake original default was 48k)"); + Host_Error ("SZ_GetSpace: overflow without allowoverflow set"); if (length > buf->maxsize) Host_Error ("SZ_GetSpace: %i is > full buffer size", length); -- 2.39.2