From 9123bf543a57257c0ea1f7fa50c8458c11a703d5 Mon Sep 17 00:00:00 2001 From: James R Date: Fri, 3 Jan 2020 16:19:21 -0800 Subject: [PATCH] Don't apply HUD translucency in Record Attack --- src/st_stuff.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/st_stuff.c b/src/st_stuff.c index dcb8a8932..68f988b1c 100644 --- a/src/st_stuff.c +++ b/src/st_stuff.c @@ -981,7 +981,9 @@ static void ST_drawInput(void) INT32 x = hudinfo[HUD_LIVES].x, y = hudinfo[HUD_LIVES].y; - if (!( translucency = st_translucency ))/* nothing to see here */ + if (modeattacking)/* no translucency in time attack */ + translucency = 10; + else if (!( translucency = st_translucency ))/* nothing to see here */ return; if (stplyr->powers[pw_carry] == CR_NIGHTSMODE)