We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b3a2e4 commit d76bf65Copy full SHA for d76bf65
src/options.cpp
@@ -13,7 +13,14 @@ bool allowHeadlessBackends = false;
13
bool errorsThrowExceptions = false;
14
bool debugDrawPickBuffer = false;
15
int maxFPS = 60;
16
+
17
+#ifdef _WIN32
18
+// set the default vsync to false on windows, to workaround an glfw errors from an alleged driver bug
19
+bool enableVSync = false;
20
+#else
21
bool enableVSync = true;
22
+#endif
23
24
bool usePrefsFile = false;
25
bool initializeWithDefaultStructures = true;
26
bool alwaysRedraw = false;
0 commit comments