diff options
author | Timothy Flynn <trflynn89@pm.me> | 2021-05-05 14:16:02 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-05 21:38:45 +0200 |
commit | e8b508516aa8f337162b96a899af95426a3c035c (patch) | |
tree | 26a8e9ad585abe513994869f1789681cdece7418 /Userland | |
parent | a07c178a0252201212308d90ca8fbbca010246ab (diff) | |
download | serenity-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.cpp | 2 |
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() |