From e8b508516aa8f337162b96a899af95426a3c035c Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Wed, 5 May 2021 14:16:02 -0400 Subject: [PATCH] Solitaire: Decrease new game animation delay The current setting is an awful long time to wait for a game to start. --- Userland/Games/Solitaire/Game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()