From d6439b8462a996fc0c37ca122a9fb8eccd04b5d2 Mon Sep 17 00:00:00 2001 From: James R Date: Fri, 29 Dec 2023 07:23:06 -0800 Subject: [PATCH] Menus/Options: tweak easing algorithm --- src/k_menudraw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/k_menudraw.c b/src/k_menudraw.c index 892f27322..71476b20d 100644 --- a/src/k_menudraw.c +++ b/src/k_menudraw.c @@ -4163,7 +4163,7 @@ void M_DrawOptions(void) fixed_t t = Easing_OutSine(M_DueFrac(optionsmenu.offset.start, M_OPTIONS_OFSTIME), optionsmenu.offset.dist * FRACUNIT, 0); fixed_t x = (140 - (48*itemOn))*FRACUNIT + t; fixed_t y = 70*FRACUNIT + t; - fixed_t tx = M_EaseWithTransition(Easing_Linear, 5 * 64 * FRACUNIT); + fixed_t tx = M_EaseWithTransition(Easing_InQuart, 5 * 64 * FRACUNIT); patch_t *buttback = W_CachePatchName("OPT_BUTT", PU_CACHE); UINT8 *c = NULL;