]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
no longer uses SZ_Alloc for cmd_text buffer
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 5 Apr 2005 17:31:37 +0000 (17:31 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 5 Apr 2005 17:31:37 +0000 (17:31 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5157 d7cf8633-e32d-0410-b094-e92efae38249

cmd.c

diff --git a/cmd.c b/cmd.c
index ce200ea2de3ad16414b041fe1a4b5978fcf3493b..89c5a8bfd43028b84d25087f9777efe94fad6d18 100644 (file)
--- a/cmd.c
+++ b/cmd.c
@@ -64,7 +64,9 @@ static void Cmd_Wait_f (void)
 =============================================================================
 */
 
+       // LordHavoc: inreased this from 8192 to 32768
 static sizebuf_t       cmd_text;
+static qbyte           cmd_text_buf[32768];
 
 /*
 ============
@@ -73,8 +75,10 @@ Cbuf_Init
 */
 void Cbuf_Init (void)
 {
-       // LordHavoc: inreased this from 8192 to 32768
-       SZ_Alloc (&cmd_text, 32768, "command buffer"); // space for commands and script files
+       // space for commands and script files
+       cmd_text.data = cmd_text_buf;
+       cmd_text.maxsize = sizeof(cmd_text_buf);
+       cmd_text.cursize = 0;
 }
 
 /*
@@ -84,7 +88,6 @@ Cbuf_Shutdown
 */
 void Cbuf_Shutdown (void)
 {
-       SZ_Free (&cmd_text);
 }
 
 /*