Skip to content

Commit b1cd8a2

Browse files
committed
feat: Add D8VK support
1 parent de20ced commit b1cd8a2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bottles/backend/dlls/dxvk.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121

2222
class DXVKComponent(DLLComponent):
2323
dlls = {
24-
"x32": ["d3d9.dll", "d3d10core.dll", "d3d11.dll", "dxgi.dll"],
25-
"x64": ["d3d9.dll", "d3d10core.dll", "d3d11.dll", "dxgi.dll"],
24+
"x32": ["d3d8.dll", "d3d9.dll", "d3d10core.dll", "d3d11.dll", "dxgi.dll"],
25+
"x64": ["d3d8.dll", "d3d9.dll", "d3d10core.dll", "d3d11.dll", "dxgi.dll"],
2626
}
2727

2828
@staticmethod
2929
def get_override_keys() -> str:
30-
return "d3d9,d3d10core,d3d11,dxgi"
30+
return "d3d8,d3d9,d3d10core,d3d11,dxgi"
3131

3232
@staticmethod
3333
def get_base_path(version: str) -> str:

0 commit comments

Comments
 (0)