From b081dd5d7ea7c729450884df438ee0fad4a3bc0f Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Tue, 18 Aug 2020 21:49:37 -0400 Subject: [PATCH] Make title screen full black Don't care about making it use our old title screen since we're replacing it anyway --- src/f_finale.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/f_finale.c b/src/f_finale.c index 14e644bce..dd876df63 100644 --- a/src/f_finale.c +++ b/src/f_finale.c @@ -1687,7 +1687,7 @@ void F_InitMenuPresValues(void) // Set defaults for presentation values strncpy(curbgname, "TITLESKY", 9); curfadevalue = 16; - curbgcolor = -1; + curbgcolor = 31; curbgxspeed = (gamestate == GS_TIMEATTACK) ? 0 : titlescrollxspeed; curbgyspeed = (gamestate == GS_TIMEATTACK) ? 22 : titlescrollyspeed; curbghide = (gamestate == GS_TIMEATTACK) ? false : true;