Removed useless debug message.

This commit is contained in:
Ulysse Cura 2026-08-22 12:30:24 +02:00
parent 1d2a6da977
commit 6bfa68db05
1 changed files with 0 additions and 2 deletions

View File

@ -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);