GPU tweaks

This commit is contained in:
Serge
2023-08-10 23:39:45 +02:00
parent ea61e428da
commit 3d5c0d5ade
7 changed files with 23 additions and 17 deletions

View File

@@ -356,9 +356,14 @@ public static class AppConfig
return ContainsModel("FX507") || ContainsModel("FX517") || ContainsModel("FX707");
}
public static bool IsGPUFixNeeded()
{
return ContainsModel("GA402X") || ContainsModel("GV302");
}
public static bool IsGPUFix()
{
return ContainsModel("GA402X") && (Get("gpu_fix") != 0);
return Is("gpu_fix") || (ContainsModel("GA402X") && IsNotFalse("gpu_fix"));
}
}