Window resize question.

Started by
9 comments, last by olle55 21 years, 6 months ago
The problem was in ddutil.cpp which i used to initialize ddraw.

Just comment the following lines in ddraw.cpp and it will work.


      // If we are still a WS_POPUP window we should convert to a normal app    // window so we look like a windows app.    dwStyle  = GetWindowStyle( hWnd );    dwStyle &= ~WS_POPUP;    dwStyle |= WS_OVERLAPPED | WS_CAPTION | WS_THICKFRAME | WS_MINIMIZEBOX;    SetWindowLong( hWnd, GWL_STYLE, dwStyle );  

This topic is closed to new replies.

Advertisement