summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorquou <quou@disroot.org>2024-08-04 15:34:05 +1000
committerquou <quou@disroot.org>2024-08-04 15:34:05 +1000
commitb0a5f59fe3bea9aab8f52016a90b6cbbcaea4571 (patch)
tree83b4e6f4b0d02646de888eeaff25d485e12ef73c /config.h
parent9c2f9a59096b5ec449c7557afb3220ed2597c4ea (diff)
WIP lightmap baking
Diffstat (limited to 'config.h')
-rw-r--r--config.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/config.h b/config.h
index 87a4824..8a95ce8 100644
--- a/config.h
+++ b/config.h
@@ -5,7 +5,8 @@
#define app_memory_size (1024 * 1024 * 32)
#define asset_preload_memory_size (1024 * 1024 * 8)
#define gui_memory_size (1024 * 8)
-#define map_memory_size (1024 * 8)
+/* 8 megs for the map is not good. todo compress */
+#define map_memory_size (1024 * 1024 * 8)
#define max_vp_w 2000
#define max_vp_h 2000
@@ -15,5 +16,6 @@
#define max_map_w 32
#define max_map_h 32
+#define map_light_tile_size 16
#endif