Ver código fonte

UI: Remove Windows 7 browser hwaccel check

derrod 2 anos atrás
pai
commit
5083c2a2e2
1 arquivos alterados com 1 adições e 3 exclusões
  1. 1 3
      UI/obs-app.cpp

+ 1 - 3
UI/obs-app.cpp

@@ -500,12 +500,10 @@ bool OBSApp::InitGlobalConfigDefaults()
 				"MultiviewDrawAreas", true);
 
 #ifdef _WIN32
-	uint32_t winver = GetWindowsVersion();
-
 	config_set_default_bool(globalConfig, "Audio", "DisableAudioDucking",
 				true);
 	config_set_default_bool(globalConfig, "General", "BrowserHWAccel",
-				winver > 0x601);
+				true);
 #endif
 
 #ifdef __APPLE__