draw black background during blan intro screen

prevents white border on higher resolutions
This commit is contained in:
Alug 2025-06-27 13:13:11 +02:00
parent 7c6838c98e
commit b2b0ec19d6

View file

@ -337,16 +337,16 @@ static void F_IntroDrawScene(void)
{
background = W_CachePatchName("KARTKREW", PU_CACHE);
highres = true;
V_DrawFill(0, 0, BASEVIDWIDTH, BASEVIDHEIGHT, 0);
}
if (intro_scenenum == 1)
{
background = W_CachePatchName("BLANKART", PU_CACHE);
highres = false;
V_DrawFill(0, 0, BASEVIDWIDTH, BASEVIDHEIGHT, 31);
}
V_DrawFill(0, 0, BASEVIDWIDTH, BASEVIDHEIGHT, 0);
if (background)
{
if (highres)