Skip to content

Commit

Permalink
proton: Copy dxvk's d3d8 lib over now that's been merged
Browse files Browse the repository at this point in the history
Fixes #1217
  • Loading branch information
Tk-Glitch committed Jul 8, 2024
1 parent 37cf1a9 commit 3d1abfa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions proton-tkg/proton_template/conf/proton
Original file line number Diff line number Diff line change
Expand Up @@ -1062,9 +1062,9 @@ class CompatData:

if use_wined3d:
dxvkfiles = []
wined3dfiles = ["d3d11", "d3d10", "d3d10core", "d3d10_1", "d3d9"]
wined3dfiles = ["d3d11", "d3d10", "d3d10core", "d3d10_1", "d3d9", "d3d8"]
else:
dxvkfiles = ["d3d11", "d3d10", "d3d10core", "d3d10_1", "d3d9"]
dxvkfiles = ["d3d11", "d3d10", "d3d10core", "d3d10_1", "d3d9", "d3d8"]
wined3dfiles = []

#if the user asked for dxvk's dxgi (dxgi=n), then copy it into place
Expand Down
6 changes: 3 additions & 3 deletions proton-tkg/proton_template/dxvk_minimald3d10.patch
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ index be3586d..2d8a659 100755
+++ b/proton
@@ -333,7 +333,7 @@ class CompatData:
dxvkfiles = ["dxvk_config"]
wined3dfiles = ["d3d11", "d3d10", "d3d10core", "d3d10_1", "d3d9"]
wined3dfiles = ["d3d11", "d3d10", "d3d10core", "d3d10_1", "d3d9", "d3d8"]
else:
- dxvkfiles = ["d3d11", "d3d10", "d3d10core", "d3d10_1", "d3d9"]
+ dxvkfiles = ["d3d11", "d3d10core", "d3d9"]
- dxvkfiles = ["d3d11", "d3d10", "d3d10core", "d3d10_1", "d3d9", "d3d8"]
+ dxvkfiles = ["d3d11", "d3d10core", "d3d9", "d3d8"]
wined3dfiles = []

#if the user asked for dxvk's dxgi (dxgi=n), then copy it into place

0 comments on commit 3d1abfa

Please sign in to comment.