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

Solitaire: Decrease new game animation delay

The current setting is an awful long time to wait for a game to start.
This commit is contained in:
Timothy Flynn 2021-05-05 14:16:02 -04:00 committed by Andreas Kling
parent a07c178a02
commit e8b508516a

View file

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