From 1dae0d7f121c3e9c9efa724075d57e980ae6e263 Mon Sep 17 00:00:00 2001 From: Sara Date: Mon, 27 Nov 2023 19:02:33 +0100 Subject: [PATCH] fix(windows): removed cast from static definition --- game/src/Player.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/src/Player.c b/game/src/Player.c index 3775a94..fa420e2 100644 --- a/game/src/Player.c +++ b/game/src/Player.c @@ -5,7 +5,7 @@ #include "input_axis.h" #include "physics_world.h" -const Vector PLAYER_SPEED = MakeVector(1.0f, 0.70f); +const Vector PLAYER_SPEED = { 1.0f, 0.70f }; static inline void Internal_PlayerInitInput(Player* self) {