Skip to content

Commit

Permalink
Enable DxWrapper by default on Wine
Browse files Browse the repository at this point in the history
  • Loading branch information
BC46 committed Nov 16, 2024
1 parent afdb1c8 commit 1df2855
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui.iss
Original file line number Diff line number Diff line change
Expand Up @@ -1536,8 +1536,8 @@ begin
// Only check the planetscapes fix option if the user's aspect ratio is 16:9
PlanetScape.Checked := IsResWithinAspectRatioRange(Min16by9Factor, Max16by9Factor);
DgVoodooGraphicsApi.Checked := GpuManufacturer = NVIDIAOrOther;
DxWrapperGraphicsApi.Checked := GpuManufacturer = AMD;
DgVoodooGraphicsApi.Checked := (GpuManufacturer = NVIDIAOrOther) and (not IsWine);
DxWrapperGraphicsApi.Checked := (GpuManufacturer = AMD) or IsWine;
DxWrapperAa.ItemIndex := 4;
DxWrapperAf.ItemIndex := 5;
Expand Down

0 comments on commit 1df2855

Please sign in to comment.