1
0
mirror of https://github.com/lutris/lutris synced 2024-07-05 08:28:41 +00:00

Remove [200~-run_without_steam (example: true)

This commit is contained in:
Mathieu Comandon 2019-01-07 17:43:30 -08:00
parent 8d489c9008
commit e136a8f5f7
2 changed files with 0 additions and 10 deletions

View File

@ -978,16 +978,12 @@ Sysoptions
``quit_steam_on_exit`` (example: ``true``)
``steamless_binary64`` (example: fallout64-nosteam)
``steamless_binary`` (example: fallout-nosteam)
``run_without_steam`` (example: ``true``)
**steam section:**
``steamless_binary64`` (example: fallout64-nosteam)
``steamless_binary`` (example: fallout-nosteam)
``run_without_steam`` (example: ``true``)

View File

@ -724,12 +724,6 @@ class ScriptInterpreter(CommandsMixin):
raise ScriptingError("Invalid 'game' section", self.script["game"])
config["game"] = self._substitute_config(config["game"])
# steamless_binary64 can be used to specify 64 bit non-steam binaries
if system.LINUX_SYSTEM.is_64_bit and "steamless_binary64" in config["game"]:
config["game"]["steamless_binary"] = config["game"][
"steamless_binary64"
]
yaml_config = yaml.safe_dump(config, default_flow_style=False)
with open(config_filename, "w") as config_file:
config_file.write(yaml_config)