Clean fix issue #19
authorStefanos A. <stapostol@gmail.com>
Fri, 20 Dec 2013 23:43:05 +0000 (00:43 +0100)
committerStefanos A. <stapostol@gmail.com>
Fri, 20 Dec 2013 23:43:05 +0000 (00:43 +0100)
Isolate and commit fix for issue #19 without potential for regressions.

Source/OpenTK/Platform/Windows/WinGLNative.cs

index ccdcbd3..6125ffd 100644 (file)
@@ -1207,7 +1207,7 @@ namespace OpenTK.Platform.Windows
         MSG msg;
         public void ProcessEvents()
         {
-            while (Functions.PeekMessage(ref msg, window.Handle, 0, 0, PeekMessageFlags.Remove))
+            while (Functions.PeekMessage(ref msg, IntPtr.Zero, 0, 0, PeekMessageFlags.Remove))
             {
                 Functions.TranslateMessage(ref msg);
                 Functions.DispatchMessage(ref msg);