From 6cfa5877a4fdbcd499528f653f8330e7bbaf47f5 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Tue, 21 Jan 2025 11:25:33 +0300 Subject: [PATCH] engine: base_cmd: decrease base cmd hash size --- engine/common/base_cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/common/base_cmd.c b/engine/common/base_cmd.c index 6039e238..df471ecd 100644 --- a/engine/common/base_cmd.c +++ b/engine/common/base_cmd.c @@ -17,7 +17,7 @@ GNU General Public License for more details. #include "base_cmd.h" #include "cdll_int.h" -#define HASH_SIZE 128 // 128 * 4 * 4 == 2048 bytes +#define HASH_SIZE 64 // 64 * 4 * 4 == 1024 bytes typedef struct base_command_hashmap_s base_command_hashmap_t;