mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Draw non-green res. border on replay intermission
- This bug was replay specific
This commit is contained in:
parent
1a9dc17945
commit
4d9b0a93f2
1 changed files with 1 additions and 1 deletions
|
|
@ -474,7 +474,7 @@ void M_DrawMenuForeground(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
// draw non-green resolution border
|
// draw non-green resolution border
|
||||||
if (currentMenu != &PAUSE_PlaybackMenuDef && // this obscures replay menu and I want to put in minimal effort to fix that
|
if ((!menuactive || currentMenu != &PAUSE_PlaybackMenuDef) && // this obscures replay menu and I want to put in minimal effort to fix that
|
||||||
((vid.width % BASEVIDWIDTH != 0) || (vid.height % BASEVIDHEIGHT != 0)))
|
((vid.width % BASEVIDWIDTH != 0) || (vid.height % BASEVIDHEIGHT != 0)))
|
||||||
{
|
{
|
||||||
V_DrawFixedPatch(0, 0, FRACUNIT, 0, W_CachePatchName("WEIRDRES", PU_CACHE), NULL);
|
V_DrawFixedPatch(0, 0, FRACUNIT, 0, W_CachePatchName("WEIRDRES", PU_CACHE), NULL);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue