Skip to content

Commit

Permalink
Added DXVK
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Hrbek committed Jun 6, 2019
1 parent 0877d8b commit 7f32688
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
include("engines.wine.quick_script.steam_script");
include("engines.wine.verbs.uplay");
include("engines.wine.verbs.dxvk");

var installerImplementation = {
run: function () {
Expand All @@ -12,6 +13,7 @@ var installerImplementation = {
.wineDistribution("staging")
.postInstall(function (wine/*, wizard*/) {
wine.uplay();
wine.DXVK();
})
.go();
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
include("engines.wine.quick_script.uplay_script");
include("engines.wine.verbs.dxvk");

var installerImplementation = {
run: function () {
Expand All @@ -8,6 +9,9 @@ var installerImplementation = {
.applicationHomepage("https://www.ubisoft.com/en-us/game/assassins-creed")
.author("KREYREN")
.appId(1955)
.preInstall(function (wine/*, wizard*/) {
wine.DXVK();
})
.go();
};

Expand Down

0 comments on commit 7f32688

Please sign in to comment.