diff --git a/Source/OpenTK/Platform/Windows/WinGLContext.cs b/Source/OpenTK/Platform/Windows/WinGLContext.cs index 74a5009a..b7da272a 100644 --- a/Source/OpenTK/Platform/Windows/WinGLContext.cs +++ b/Source/OpenTK/Platform/Windows/WinGLContext.cs @@ -331,7 +331,10 @@ namespace OpenTK.Platform.Windows { value = 1; } - Wgl.Ext.SwapInterval(value); + if (!Wgl.Ext.SwapInterval(value)) + { + Debug.Print("wglSwapIntervalEXT call failed."); + } } } }