From 6bfa68db05dafd773860bcea000f0c3fcba0176a Mon Sep 17 00:00:00 2001 From: Ulysse Cura Date: Sat, 22 Aug 2026 12:30:24 +0200 Subject: [PATCH] Removed useless debug message. --- src/map.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/map.c b/src/map.c index 7a5847e..b362e30 100644 --- a/src/map.c +++ b/src/map.c @@ -34,8 +34,6 @@ map_t *load_map(void) linked_list_init(&map->backgroundlayers, map->width * map->height * sizeof(uint16_t), NULL, NULL); if(linked_list_reserve(&map->backgroundlayers, map->backgroundlayernb)) return_failure_ptr; - debug_printf("%d", map->backgroundlayernb); - for(uint8_t i = 0; i < map->backgroundlayernb; i++) { elem_t *backgroundlayer_elem = create_elem(&map->backgroundlayers);