diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-04-20 17:46:59 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-04-20 17:46:59 +0200 |
commit | 461901948175dcace8023afdf6126b79cfad658d (patch) | |
tree | b55ed68c4dee7cb247c675a428c1375d7b50551d /Games/Snake/SnakeGame.cpp | |
parent | 7234900f61fdcb0f13b3555749d1590ea0b0b1d8 (diff) | |
download | serenity-461901948175dcace8023afdf6126b79cfad658d.zip |
Snake: Tweak game speed so it's not too easy.
Diffstat (limited to 'Games/Snake/SnakeGame.cpp')
-rw-r--r-- | Games/Snake/SnakeGame.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Games/Snake/SnakeGame.cpp b/Games/Snake/SnakeGame.cpp index 24a539c83a..0b49fe4d10 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(); } |