From 988a87712b3678b883f8458411009b1c394727dd Mon Sep 17 00:00:00 2001 From: Sara Date: Sun, 12 Nov 2023 16:05:20 +0100 Subject: [PATCH] player animation speed set to 8fps --- src/player.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/player.c b/src/player.c index 2d9beca..84ff8f9 100644 --- a/src/player.c +++ b/src/player.c @@ -7,7 +7,7 @@ #include "game_world.h" #include -static const float _anim_speed = 1.0; +static const float _anim_speed = 1.0/8.0; static void player_input_h(Player* self, InputEvent val) {