shithub: qk1

Download patch

ref: 78fe6348a53f18d6d477366590d07b75d6833dc3
parent: a2a1e4ddd855afe9caf7ac420dca9aaa9a3de223
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Sun Oct 8 17:05:28 EDT 2023

cmd: increase cmd text buffer: 8k → 64k

--- a/cmd.c
+++ b/cmd.c
@@ -55,7 +55,7 @@
 */
 void Cbuf_Init (void)
 {
-	SZ_Alloc (&cmd_text, 8192);		// space for commands and script files
+	SZ_Alloc (&cmd_text, 65536);		// space for commands and script files
 }