Added a "fix" in WindowImplWin32 that avoids weird behaviors with some configurations
git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/trunk@1443 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
parent
b3ca862273
commit
d8a31243e4
|
@ -273,7 +273,7 @@ void WindowImplWin32::ProcessEvents()
|
|||
if (!myCallback)
|
||||
{
|
||||
MSG Message;
|
||||
while (PeekMessage(&Message, myHandle, 0, 0, PM_REMOVE))
|
||||
while (PeekMessage(&Message, NULL, 0, 0, PM_REMOVE))
|
||||
{
|
||||
TranslateMessage(&Message);
|
||||
DispatchMessage(&Message);
|
||||
|
|
Loading…
Reference in a new issue