mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +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
45c6018094
commit
9e16f3b0dc
1 changed files with 1 additions and 1 deletions
|
|
@ -330,7 +330,7 @@ void Y_IntermissionDrawer(void)
|
|||
safetorender = false;
|
||||
}
|
||||
|
||||
if (!usebuffer || !safetorender)
|
||||
if (!safetorender)
|
||||
V_DrawFill(0, 0, BASEVIDWIDTH, BASEVIDHEIGHT, 31);
|
||||
|
||||
if (!safetorender)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue