Skip to content

Commit 9dddd9a

Browse files
committed
Only do menu border when fullscreen
1 parent ac1bb59 commit 9dddd9a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

releasenotes.md

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
* These changes have been made when pressing the <kbd><b>TAB</b></kbd> key to autocomplete text in the console:
2121
* The case of the autocompleted text now always matches the text that’s already been entered.
2222
* The text to the left of any semi-colon is no longer cleared.
23+
* The border of the menu’s background is now only displayed if the `vid_fullscreen` CVAR is `on`.
2324
* The help screen can now be shown by pressing the <kbd><b>F1</b></kbd> key when the menu is open.
2425
* When the `animatedstats` CVAR is `on`:
2526
* The player’s health now animates correctly if they are telefragged.

src/m_menu.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ void M_DrawMenuBackground(void)
556556

557557
memcpy(screens[0], blurscreen, SCREENAREA);
558558

559-
if (!consoleactive)
559+
if (!consoleactive && vid_fullscreen)
560560
M_DrawMenuBorder();
561561

562562
if (mapwindow)

0 commit comments

Comments
 (0)