|
> Had a quick look at the MAMECE code > > hWnd = CreateWindow( _T("MAMECE_PLAYWINDOW"), > _T(""), > WS_POPUP, > 0, > 0, > GetSystemMetrics(SM_CXSCREEN), > GetSystemMetrics(SM_CYSCREEN) , > MAMECE3App.m_hwndUI, > NULL, > hInstance, > NULL); > > ShowWindow(hWnd, SW_SHOWNORMAL); > UpdateWindow(hWnd); > > > > As far as I can see there are some things to try before trying the SHFullscreen > call. The WS_POPUP and the ShowWindow(hWnd,SW_SHOWNORMAL) call (I just used > WS_VISIBLE). Maybe give that a try? >
Would that really change much? After all, this routine is run once, when the window initializes. I always thought the WS_popup was wrong but it was from the original Mame Code so I left it in.
Cheers, -Techmaster
|