collision check enabled by default using simple check.

This commit is contained in:
Antonio Carzaniga 2022-06-10 12:47:33 +02:00
parent 94ec166a4a
commit f30ca5e594

View File

@ -37,7 +37,7 @@ void check_collisions_with_index () {
gravity_collisions (&spaceship, &spaceship + 1);
}
void (*check_collisions)() = 0;
void (*check_collisions)() = check_collisions_simple;
void update_state () {
if (check_collisions)