We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea3d685 commit ef648d7Copy full SHA for ef648d7
v3.3/glfw/glfw.go
@@ -34,7 +34,10 @@ const (
34
// This function may only be called from the main thread.
35
func Init() error {
36
C.glfwInit()
37
- return acceptError(APIUnavailable)
+ // invalidValue can happen when specific joysticks are used. This issue
38
+ // will be fixed in GLFW 3.3.5. As a temporary fix, accept this error.
39
+ // See go-gl/glfw#292, go-gl/glfw#324, and glfw/glfw#1763.
40
+ return acceptError(APIUnavailable, invalidValue)
41
}
42
43
// Terminate destroys all remaining windows, frees any allocated resources and
0 commit comments