diff options
Diffstat (limited to 'collision_system.c')
-rw-r--r-- | collision_system.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/collision_system.c b/collision_system.c index cf1378c..ed05817 100644 --- a/collision_system.c +++ b/collision_system.c @@ -47,7 +47,7 @@ static void handle_bullet_vs_player( pos = &world->positions[bullet]; - player_take_damage(&world->player, 1); + player_take_damage(world, &world->player, 1); destroy_entity(world, bullet); new_enemy_bullet_explosion(world, pos->x, pos->y); } |