From 5083c2a2e2caa0e7355cad954b03382301028e23 Mon Sep 17 00:00:00 2001 From: derrod Date: Tue, 14 Mar 2023 21:24:46 +0100 Subject: [PATCH] UI: Remove Windows 7 browser hwaccel check --- UI/obs-app.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/UI/obs-app.cpp b/UI/obs-app.cpp index e4e504efa..73b826a84 100644 --- a/UI/obs-app.cpp +++ b/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__