Skip to content

Commit

Permalink
Update script.js
Browse files Browse the repository at this point in the history
Trying to poke bot to see what it spits out to prevent installing ESling
  • Loading branch information
Kreyren authored and Jacob Hrbek committed Jan 9, 2019
1 parent 68fc0b7 commit c00fd56
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Applications/Games/League of Legends/Online/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,16 +89,16 @@ var installerImplementation = {
})
.category("Games")
.wineDistribution("staging")
.wineVersion(LATEST_STAGING_VERSION) // TODO: Gallium9 patchset, improves performance // Using Master is insane for league of legends // confirmed working on wine-4.0-rc2
.wineVersion(LATEST_STAGING_VERSION)
.preInstall(function (wine /*, wizard*/) {
wine.windowsVersion("winxp"); // Required to disable DirectX10+ since DXVK causes anti-cheat to trigger (https://github.com/doitsujin/dxvk/issues/835)
wine.d3dx9(); // Not tested
wine.enableCSMT(); // Not tested
wine.disableGLSL(); // Recommended by WineHQ, not tested
wine.corefonts(); // Mandatory for fonts
wine.vcrun2008(); // May be required for some compatibility, improves performance
wine.vcrun2017(); // Mandatory for Game window, triggers anti-cheat of not included
wine.adobeair(); // Mandatory for launcher, causes freezes if not included
wine.windowsVersion("winxp");
wine.d3dx9();
wine.enableCSMT();
wine.disableGLSL();
wine.corefonts();
wine.vcrun2008();
wine.vcrun2017();
wine.adobeair();

mkdir(wine.prefixDirectory() + "drive_c/LoL");

Expand Down

0 comments on commit c00fd56

Please sign in to comment.