mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-31 05:30:48 +00:00
Only fill the intermission with blapck if we can't draw patches
This fixes an issue where patches cease to be drawn due to Y_UnloadData, but the screen is still overwritten, causing the next wipe to start from void.
This commit is contained in:
parent
0435acd516
commit
864e703355
1 changed files with 1 additions and 1 deletions
|
@ -330,7 +330,7 @@ void Y_IntermissionDrawer(void)
|
||||||
safetorender = false;
|
safetorender = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!usebuffer || !safetorender)
|
if (!safetorender)
|
||||||
V_DrawFill(0, 0, BASEVIDWIDTH, BASEVIDHEIGHT, 31);
|
V_DrawFill(0, 0, BASEVIDWIDTH, BASEVIDHEIGHT, 31);
|
||||||
|
|
||||||
if (!safetorender)
|
if (!safetorender)
|
||||||
|
|
Loading…
Reference in a new issue