- fixed: The reverb editor failed to open in fullscreen mode at desktop resolution.

According to Blzut3:

The issue happens when the fullscreen resolution is the same as the desktop resolution. In this case WM_DISPLAYCHANGE doesn't occur so the editor never appears. This appears to be fixable by also catching WM_STYLECHANGED since at the very least the window caption will appear/disappear.
This commit is contained in:
Christoph Oelckers 2016-01-30 21:49:03 +01:00
parent d826ef8be1
commit 06fdb6ca45
1 changed files with 1 additions and 0 deletions

View File

@ -525,6 +525,7 @@ LRESULT CALLBACK WndProc (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
break;
case WM_DISPLAYCHANGE:
case WM_STYLECHANGED:
if (SpawnEAXWindow)
{
SpawnEAXWindow = false;