summaryrefslogtreecommitdiff
path: root/Games/Snake/SnakeGame.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-04-20 17:46:59 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-04-20 17:46:59 +0200
commit461901948175dcace8023afdf6126b79cfad658d (patch)
treeb55ed68c4dee7cb247c675a428c1375d7b50551d /Games/Snake/SnakeGame.cpp
parent7234900f61fdcb0f13b3555749d1590ea0b0b1d8 (diff)
downloadserenity-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.cpp2
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();
}