From 8fff2edae5ecd3b1d82de16cc4feb790ecd313ef Mon Sep 17 00:00:00 2001 From: En Yi Date: Sun, 4 May 2025 20:55:14 +0800 Subject: [PATCH] Slightly increase water fill rate --- scenes/water_flow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scenes/water_flow.c b/scenes/water_flow.c index 07442c6..6cfa248 100644 --- a/scenes/water_flow.c +++ b/scenes/water_flow.c @@ -289,7 +289,7 @@ void update_water_runner_system(Scene_t* scene) break; case SCANLINE_FILL: { - const float FILL_RATE = 1.0f/20; + const float FILL_RATE = 1.0f/22; p_crunner->fractional += scene->delta_time; if (p_crunner->fractional < FILL_RATE) break;