submit2
This commit is contained in:
parent
fe913763f6
commit
fddead63be
@ -34,12 +34,11 @@ void free_snake(struct snake* sn){
|
||||
return;
|
||||
}
|
||||
struct snake* next_element;
|
||||
while(current->next!=NULL){
|
||||
while(current!=NULL){
|
||||
next_element=current->next;
|
||||
free(current);
|
||||
current=next_element;
|
||||
}
|
||||
free(current);
|
||||
}
|
||||
|
||||
int is_snake(struct snake* snake,int x,int y){
|
||||
@ -58,3 +57,4 @@ int step_state(struct state* st){
|
||||
int ny = (st->snake->y + st->sy);
|
||||
return END_CONTINUE;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user