diff --git a/game/tower.odin b/game/tower.odin index cd7617f..8f2ae25 100644 --- a/game/tower.odin +++ b/game/tower.odin @@ -51,7 +51,7 @@ rects_overlap :: proc( footprint_center :: proc(gx, gy, footprint_w, footprint_h: int) -> Vec2 { return Vec2 { f32(gx * TILE_SIZE + (footprint_w * TILE_SIZE) / 2), - f32(gy * TILE_SIZE + (footprint_h + TILE_SIZE) / 2), + f32(gy * TILE_SIZE + (footprint_h * TILE_SIZE) / 2), } }