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
commit e8b508516a
Notes: sideshowbarker 2024-07-18 18:39:48 +09:00

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