Skip to content

Commit

Permalink
feat: Add D8VK support
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkobrombin committed Jul 9, 2024
1 parent de20ced commit b1cd8a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bottles/backend/dlls/dxvk.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@

class DXVKComponent(DLLComponent):
dlls = {
"x32": ["d3d9.dll", "d3d10core.dll", "d3d11.dll", "dxgi.dll"],
"x64": ["d3d9.dll", "d3d10core.dll", "d3d11.dll", "dxgi.dll"],
"x32": ["d3d8.dll", "d3d9.dll", "d3d10core.dll", "d3d11.dll", "dxgi.dll"],
"x64": ["d3d8.dll", "d3d9.dll", "d3d10core.dll", "d3d11.dll", "dxgi.dll"],
}

@staticmethod
def get_override_keys() -> str:
return "d3d9,d3d10core,d3d11,dxgi"
return "d3d8,d3d9,d3d10core,d3d11,dxgi"

@staticmethod
def get_base_path(version: str) -> str:
Expand Down

0 comments on commit b1cd8a2

Please sign in to comment.