Removed 2 small problemes

This commit is contained in:
Ulysse Cura 2025-08-06 10:30:16 +02:00
parent b94c751527
commit 54ae7038b8
2 changed files with 1 additions and 2 deletions

View File

@ -5,7 +5,6 @@
#include "sprite_component.h"
#include "animation_system.h"
#include "player_system.h"
#include "enemy_system.h"
// Add new components header file here
#endif // COMPONENTS_H

View File

@ -82,7 +82,7 @@ int main(void)
dclear(C_WHITE);
linked_list_t linked_list;
linked_list_init(&linked_list, sizeof(int));
linked_list_init(&linked_list, sizeof(int), NULL);
if(linked_list.first == linked_list.last &&
linked_list.first == NULL)
{