Sophie

Sophie

distrib > Fedora > 13 > x86_64 > by-pkgid > 08163ffb50475ea8ee1ba869af0dfe3e > files > 11

quake3-1.36-8.svn1802.fc13.src.rpm

From: Simon McVittie <smcv@debian.org>
Date: Wed, 11 Aug 2010 21:40:59 +0100
Subject: [PATCH] Double the default com_hunkMegs, to 128M

OpenArena apparently aims for double the detail level, texture size etc.
of vanilla Quake 3, so it needs more memory.

Origin: OpenArena
Forwarded: no
---
 code/qcommon/common.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/code/qcommon/common.c b/code/qcommon/common.c
index d6c0532..ef022e3 100644
--- a/code/qcommon/common.c
+++ b/code/qcommon/common.c
@@ -38,7 +38,7 @@ int demo_protocols[] =
 
 #define MIN_DEDICATED_COMHUNKMEGS 1
 #define MIN_COMHUNKMEGS		56
-#define DEF_COMHUNKMEGS		64
+#define DEF_COMHUNKMEGS		128
 #define DEF_COMZONEMEGS		24
 #define DEF_COMHUNKMEGS_S	XSTRING(DEF_COMHUNKMEGS)
 #define DEF_COMZONEMEGS_S	XSTRING(DEF_COMZONEMEGS)
--