Use floats for position in ship_init().

This commit is contained in:
2026-03-20 14:32:21 +01:00
parent 1f3674b266
commit abe90847ea
3 changed files with 3 additions and 3 deletions

View File

@@ -26,7 +26,7 @@
#define SHIP_RADIUS 10.0f // radius of the ship in pixels
void ship_init(struct ship *ship, int x, int y) {
void ship_init(struct ship *ship, float x, float y) {
assert(ship);
ship->x = x;
ship->y = y;