From: Matthias Krüger Date: Mon, 2 Jan 2017 10:59:59 +0000 (+0100) Subject: decreased blocksize from 1024^3 to 512^3 leading to smaller portals and better vis... X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=refs%2Fheads%2Fmatthiaskrgr%2Fsmaller_ptlsize;p=xonotic%2Fnetradiant.git 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. --- 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 ];