Merge pull request #2126 from NZJenkins/fix-wm-paint

Ensure WM_PAINT is handled correctly
This commit is contained in:
PatrickvL 2021-01-26 09:52:09 +01:00 committed by GitHub
commit fe398a4562
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -1824,6 +1824,10 @@ static LRESULT WINAPI EmuMsgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lPar
{
DrawUEM(hWnd);
}
else
{
DefWindowProc(hWnd, msg, wParam, lParam);
}
}
break;