summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorTimothy Flynn <trflynn89@pm.me>2021-05-05 14:16:02 -0400
committerAndreas Kling <kling@serenityos.org>2021-05-05 21:38:45 +0200
commite8b508516aa8f337162b96a899af95426a3c035c (patch)
tree26a8e9ad585abe513994869f1789681cdece7418 /Userland
parenta07c178a0252201212308d90ca8fbbca010246ab (diff)
downloadserenity-e8b508516aa8f337162b96a899af95426a3c035c.zip
Solitaire: Decrease new game animation delay
The current setting is an awful long time to wait for a game to start.
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Games/Solitaire/Game.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Games/Solitaire/Game.cpp b/Userland/Games/Solitaire/Game.cpp
index c6bbeab553..6e1f29d5a6 100644
--- a/Userland/Games/Solitaire/Game.cpp
+++ b/Userland/Games/Solitaire/Game.cpp
@@ -13,7 +13,7 @@ REGISTER_WIDGET(Solitaire, Game);
namespace Solitaire {
-static constexpr uint8_t new_game_animation_delay = 5;
+static constexpr uint8_t new_game_animation_delay = 2;
static constexpr int s_timer_interval_ms = 1000 / 60;
Game::Game()