Skip to content

Commit

Permalink
updated Steam: fixed shop (#471)
Browse files Browse the repository at this point in the history
Without "-no-cef-sandbox" the shop doesn't load.
  • Loading branch information
plata authored Jan 23, 2018
1 parent deb2f20 commit 31891b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Applications/Games/Steam/Online/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ new OnlineInstallerScript()
.url("http://media.steampowered.com/client/installer/SteamSetup.exe")
.checksum("e930dbdb3bc638f772a8fcd92dbcd0919c924318")
.category("Games")
.executable("Steam.exe")
.executable("Steam.exe", ["-no-cef-sandbox"])
.go();
2 changes: 1 addition & 1 deletion Engines/Wine/QuickScript/SteamScript/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ SteamScript.prototype.go = function() {

// default executable args if not specified
if (!this._executableArgs) {
this._executableArgs = ["-silent", "-applaunch", this._appId];
this._executableArgs = ["-no-cef-sandbox", "-silent", "-applaunch", this._appId];
}

var setupWizard = SetupWizard(InstallationType.APPS, this._name, this.miniature());
Expand Down

0 comments on commit 31891b6

Please sign in to comment.