From f44210732706200b230c050dda635546da09f89a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Matthias=20Kr=C3=BCger?= Date: Mon, 2 Jan 2017 11:59:59 +0100 Subject: [PATCH] decreased blocksize from 1024^3 to 512^3 leading to smaller portals and better vis computation (more things culled at a time). Map compile time skyrockets though. --- tools/quake3/q3map2/q3map2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/quake3/q3map2/q3map2.h b/tools/quake3/q3map2/q3map2.h index 7bbbc42b..51ff26bf 100644 --- a/tools/quake3/q3map2/q3map2.h +++ b/tools/quake3/q3map2/q3map2.h @@ -2097,7 +2097,7 @@ Q_EXTERN int blockSize[ 3 ] /* should be the sam #ifndef MAIN_C ; #else - = { 1024, 1024, 1024 }; + = { 512, 512, 512 }; #endif Q_EXTERN char name[ 1024 ]; -- 2.39.2