Skip to content

Commit

Permalink
always disable menu in fullscreen mode (keep it for borderelss only)
Browse files Browse the repository at this point in the history
  • Loading branch information
FunkyFr3sh committed Aug 20, 2024
1 parent c838496 commit 05685bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dd.c
Original file line number Diff line number Diff line change
Expand Up @@ -1069,7 +1069,7 @@ HRESULT dd_SetDisplayMode(DWORD dwWidth, DWORD dwHeight, DWORD dwBPP, DWORD dwFl

if (GetMenu(g_ddraw.hwnd))
{
if (g_config.remove_menu || !g_config.nonexclusive)
if (1) // g_config.remove_menu || !g_config.nonexclusive)
{
SetMenu(g_ddraw.hwnd, NULL);
}
Expand Down

0 comments on commit 05685bf

Please sign in to comment.