Removed 2 small problemes
This commit is contained in:
parent
b94c751527
commit
54ae7038b8
|
@ -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
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue