From 87d20e7a16cf0da4e7249a50cec577998864828e Mon Sep 17 00:00:00 2001 From: Gordon Weeks <627684+gcweeks@users.noreply.github.com> Date: Sat, 31 Jan 2026 18:35:38 -0800 Subject: [PATCH] Increased game start delay from 3 to 10 seconds --- src/samples/ghhb_game.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/samples/ghhb_game.h b/src/samples/ghhb_game.h index 34e6069..296f2ca 100644 --- a/src/samples/ghhb_game.h +++ b/src/samples/ghhb_game.h @@ -25,7 +25,7 @@ constexpr float RECEPTOR_HEIGHT = 150.0f; constexpr float HIT_ZONE_MARGIN = 20.0f; constexpr float SIMULTANEOUS_NOTE_Y_TOLERANCE = 2.0f; constexpr float SCROLL_PX_PER_SEC = 350.0f; -constexpr float LEAD_OFFSET_SECONDS = 3.0f; +constexpr float LEAD_OFFSET_SECONDS = 10.0f; constexpr float GLYPH_HEIGHT_FRACTION_OF_LANE = 0.5f; constexpr float MIN_SUSTAIN_FALLBACK_SEC = 0.05f; constexpr float MIN_GLYPH_DURATION_SEC = 0.1f;