Skip to content

Commit

Permalink
Update dxvk warning for multiple DXVK 2 versions
Browse files Browse the repository at this point in the history
  • Loading branch information
rankynbass committed Sep 14, 2023
1 parent 345bed0 commit 7e58294
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ public SettingsTabDxvk()
{
CheckWarning = s =>
{
if (new [] {"dxvk-2.3", "dxvk-2.2", "dxvk-2.1", "dxvk-async-2.0", "dxvk-2.0"}.Contains(s))
if (s is null) return null;
if (s.StartsWith("dxvk-2") || s.StartsWith("dxvk-async-2") || s.StartsWith("dxvk-gplasync-v2"))
return "May not work with older graphics cards. AMD users may need to use env variable RADV_PERFTEST=gpl";
return null;
},
Expand Down

0 comments on commit 7e58294

Please sign in to comment.