From cf7c9dc7c3e23738ebf34c520c4a91c54cd7e2a4 Mon Sep 17 00:00:00 2001 From: alex Date: Sat, 11 Oct 2025 13:36:43 -0700 Subject: [PATCH] fixed typo --- source/game.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/game.c b/source/game.c index d12112da..b7a9bcf4 100644 --- a/source/game.c +++ b/source/game.c @@ -188,9 +188,9 @@ int get_game_speed(void) } // for the future when a menu actually lets this variable be changed. -void set_game_speed(int game_speed) +void set_game_speed(int game_speed_) { - game_speed = game_speed; + game_speed = game_speed_; }