remove WS_MAXIMIZE
This commit is contained in:
parent
d937960f59
commit
46c064ae56
1 changed files with 1 additions and 1 deletions
2
src/dd.c
2
src/dd.c
|
@ -664,7 +664,7 @@ HRESULT dd_SetDisplayMode(DWORD dwWidth, DWORD dwHeight, DWORD dwBPP, DWORD dwFl
|
|||
real_SetWindowLongA(
|
||||
g_ddraw->hwnd,
|
||||
GWL_STYLE,
|
||||
(GetWindowLong(g_ddraw->hwnd, GWL_STYLE) | WS_OVERLAPPEDWINDOW));// &~WS_MAXIMIZEBOX);
|
||||
(GetWindowLong(g_ddraw->hwnd, GWL_STYLE) | WS_OVERLAPPEDWINDOW) & ~WS_MAXIMIZE);
|
||||
}
|
||||
|
||||
if (g_ddraw->wine)
|
||||
|
|
Loading…
Reference in a new issue