From 461901948175dcace8023afdf6126b79cfad658d Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 20 Apr 2019 17:46:59 +0200 Subject: [PATCH] Snake: Tweak game speed so it's not too easy. --- Games/Snake/SnakeGame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Games/Snake/SnakeGame.cpp b/Games/Snake/SnakeGame.cpp index 24a539c83ac..0b49fe4d10a 100644 --- a/Games/Snake/SnakeGame.cpp +++ b/Games/Snake/SnakeGame.cpp @@ -26,7 +26,7 @@ void SnakeGame::reset() m_score_text = "Score: 0"; m_velocity_queue.clear(); stop_timer(); - start_timer(120); + start_timer(100); spawn_fruit(); update(); }