Parcourir la source

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 il y a 3 ans
Parent
commit
b77ccceae7
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      UI/platform-windows.cpp

+ 1 - 1
UI/platform-windows.cpp

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