Browse Source

UI: Fix small typo

gxalpha 3 years ago
parent
commit
d601577706
1 changed files with 2 additions and 2 deletions
  1. 2 2
      UI/obs-app.cpp

+ 2 - 2
UI/obs-app.cpp

@@ -1178,11 +1178,11 @@ OBSApp::~OBSApp()
 #endif
 
 #ifdef __APPLE__
-	bool vsyncDiabled =
+	bool vsyncDisabled =
 		config_get_bool(globalConfig, "Video", "DisableOSXVSync");
 	bool resetVSync =
 		config_get_bool(globalConfig, "Video", "ResetOSXVSyncOnExit");
-	if (vsyncDiabled && resetVSync)
+	if (vsyncDisabled && resetVSync)
 		EnableOSXVSync(true);
 #endif