Draw non-green res. border on replay intermission

- This bug was replay specific
This commit is contained in:
James R 2024-03-17 04:53:38 -07:00
parent 1a9dc17945
commit 4d9b0a93f2

View file

@ -474,7 +474,7 @@ void M_DrawMenuForeground(void)
}
// 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)))
{
V_DrawFixedPatch(0, 0, FRACUNIT, 0, W_CachePatchName("WEIRDRES", PU_CACHE), NULL);