From: lordhavoc Date: Sat, 23 Feb 2002 09:30:15 +0000 (+0000) Subject: removed -zone mention from SZ_GetSpace overflow error X-Git-Tag: RELEASE_0_2_0_RC1~630 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=70cacb435154def1eda77fe9f475e65cb5e4c42a;p=xonotic%2Fdarkplaces.git removed -zone mention from SZ_GetSpace overflow error git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@1550 d7cf8633-e32d-0410-b094-e92efae38249 --- 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);