From 3baa73e60ef9635c1c0b5030f7fec55689f7b08a Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 25 Dec 2012 15:47:00 +0900 Subject: [PATCH] Increase qwaq-x11's hunk space to 8MB. 1MB is too small for the few sounds my experimental game uses. --- tools/qwaq/qwaq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/qwaq/qwaq.c b/tools/qwaq/qwaq.c index 8f05aa348..f1197ccfb 100644 --- a/tools/qwaq/qwaq.c +++ b/tools/qwaq/qwaq.c @@ -113,7 +113,7 @@ init_qf (void) //Cvar_Set (developer, "1"); - Memory_Init (malloc (1024 * 1024), 1024 * 1024); + Memory_Init (malloc (8 * 1024 * 1024), 8 * 1024 * 1024); Cvar_Get ("pr_debug", "2", 0, 0, 0); Cvar_Get ("pr_boundscheck", "0", 0, 0, 0);