draw black background during blan intro screen
prevents white border on higher resolutions
This commit is contained in:
parent
7c6838c98e
commit
b2b0ec19d6
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue