commit c1f80da0f6691535129dd5d7dca561a29f250493
parent c5f4b78ffa30059c3af434a44f701f02383cda08
Author: Michael Savage <mikejsavage@gmail.com>
Date: Thu, 2 Nov 2017 19:19:51 +0200
Turn clipmap quality back down
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/clipmap.cc b/clipmap.cc
@@ -24,8 +24,8 @@ struct ClipmapTerrain
static ClipmapTerrain clipmap;
-static u32 PATCH_RESOLUTION = 80;
-static u32 NUM_LODS = 5;
+static u32 PATCH_RESOLUTION = 48;
+static u32 NUM_LODS = 7;
static size_t patch2d( size_t x, size_t y ) {
return y * ( PATCH_RESOLUTION + 1 ) + x;