Skip to content

Commit 09c347c

Browse files
author
Jacob Hrbek
committed
Added DXVK
1 parent 8839270 commit 09c347c

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

Applications/Games/Assassin's Creed IV Black Flag/Steam/script.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
include("engines.wine.quick_script.steam_script");
2+
include("engines.wine.verbs.dxvk");
23

34
var installerImplementation = {
45
run: function () {
@@ -12,6 +13,7 @@ var installerImplementation = {
1213
.postInstall(function (wine/*, wizard*/) {
1314
// the automatically installed Uplay version does not update properly
1415
wine.uplay();
16+
wine.DXVK();
1517
})
1618
.go();
1719
}

Applications/Games/Assassin's Creed IV Black Flag/Uplay/script.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
include("engines.wine.quick_script.uplay_script");
2+
include("engines.wine.verbs.dxvk");
23

34
var installerImplementation = {
45
run: function () {
@@ -8,6 +9,9 @@ var installerImplementation = {
89
.applicationHomepage("https://www.ubisoft.com/en-us/game/assassins-creed")
910
.author("KREYREN")
1011
.appId(273)
12+
.preInstall(function (wine/*, wizard*/) {
13+
wine.DXVK();
14+
})
1115
.go();
1216
};
1317

0 commit comments

Comments
 (0)