From 5348046109656f7ef96b591706eddd3649b8d7d7 Mon Sep 17 00:00:00 2001 From: mittorn Date: Mon, 28 Oct 2019 12:29:44 +0700 Subject: [PATCH] lowmemory: increase decals limit --- engine/common/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/common/common.h b/engine/common/common.h index fa74966a..c5f9d46b 100644 --- a/engine/common/common.h +++ b/engine/common/common.h @@ -142,7 +142,7 @@ typedef enum #define MAX_STATIC_ENTITIES 3096 // static entities that moved on the client when level is spawn #if XASH_LOW_MEMORY == 2 -#define MAX_DECALS 32 // touching TE_DECAL messages, etc +#define MAX_DECALS 256 // touching TE_DECAL messages, etc #define MAX_STATIC_ENTITIES 32 // static entities that moved on the client when level is spawn #endif