1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-14 22:03:27 +01:00

always disable menu in fullscreen mode (keep it for borderelss only)

This commit is contained in:
FunkyFr3sh 2024-08-20 11:09:49 +02:00
parent c838496b20
commit 05685bffae

View File

@ -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);
}