浏览代码

UI: Allow 'Hide OBS window' on Windows 10 2004

Per the Microsoft documentation, 2004 (19041) is the minimum supported
version for this feature. Ensure the check matches that.
Matt Gajownik 3 年之前
父节点
当前提交
b77ccceae7
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      UI/platform-windows.cpp

+ 1 - 1
UI/platform-windows.cpp

@@ -253,7 +253,7 @@ bool SetDisplayAffinitySupported(void)
 
 	if (!checked) {
 		if (GetWindowsVersion() > 0x0A00 ||
-		    GetWindowsVersion() == 0x0A00 && GetWindowsBuild() > 19041)
+		    GetWindowsVersion() == 0x0A00 && GetWindowsBuild() >= 19041)
 			supported = true;
 		else
 			supported = false;