Let DarkMode work with 20H2

This commit is contained in:
SquallATF 2020-09-21 12:19:31 +08:00 committed by GitHub
parent 3ff066f767
commit 7428b31353
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -291,7 +291,8 @@ constexpr bool CheckBuildNumber(DWORD buildNumber) {
return (buildNumber == 17763 || // 1809
buildNumber == 18362 || // 1903
buildNumber == 18363 || // 1909
buildNumber == 19041); // 2004
buildNumber == 19041 || // 2004
buildNumber == 19042); // 2010
}