From 31891b60f7ad00d42383d76fe2c5efa0d45be7ae Mon Sep 17 00:00:00 2001 From: plata Date: Tue, 23 Jan 2018 18:20:14 +0100 Subject: [PATCH] updated Steam: fixed shop (#471) Without "-no-cef-sandbox" the shop doesn't load. --- Applications/Games/Steam/Online/script.js | 2 +- Engines/Wine/QuickScript/SteamScript/script.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Applications/Games/Steam/Online/script.js b/Applications/Games/Steam/Online/script.js index 8cab513154..8678e969b0 100644 --- a/Applications/Games/Steam/Online/script.js +++ b/Applications/Games/Steam/Online/script.js @@ -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(); diff --git a/Engines/Wine/QuickScript/SteamScript/script.js b/Engines/Wine/QuickScript/SteamScript/script.js index 3f97da5a7e..2ca0b34826 100644 --- a/Engines/Wine/QuickScript/SteamScript/script.js +++ b/Engines/Wine/QuickScript/SteamScript/script.js @@ -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());