From fd6db3d78bf8f8ebbfdb797b907512ff5d9be684 Mon Sep 17 00:00:00 2001 From: Lukas Krickl Date: Tue, 30 Sep 2025 17:32:41 +0200 Subject: [PATCH] defs: reduced max player projectiles and rectangles --- src/defs.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/defs.s b/src/defs.s index 350fc6c..75576c5 100644 --- a/src/defs.s +++ b/src/defs.s @@ -13,14 +13,14 @@ #define NULL 0 -#define ACTS_PLAYER_PROJECTILES 6 +#define ACTS_PLAYER_PROJECTILES 3 #define ACTS_ENEMY 6 #define ACTS_ENEMY_PROJECTILES 6 #define ACTS_MAX (ACTS_PLAYER_PROJECTILES + ACTS_ENEMY + ACTS_ENEMY_PROJECTILES) #define MAP_OBJ_MAX 32 -#define RECT_MAX 6 +#define RECT_MAX 4 #define MAP_ROW_H 16 ; pixels per row -- 2.30.2