always disable menu in fullscreen mode (keep it for borderelss only)
This commit is contained in:
parent
c838496b20
commit
05685bffae
1 changed files with 1 additions and 1 deletions
2
src/dd.c
2
src/dd.c
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue