1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:47:36 +00:00

Snake: Tweak game speed so it's not too easy.

This commit is contained in:
Andreas Kling 2019-04-20 17:46:59 +02:00
parent 7234900f61
commit 4619019481

View file

@ -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();
}