From c6e622f3aec1228f865dfb97bcb82b54d25da43a Mon Sep 17 00:00:00 2001 From: derrod Date: Sat, 30 Sep 2023 03:31:52 +0200 Subject: [PATCH] [cli] Fix setting "disable_sdl" config option These have to be strings, whoops. --- legendary/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legendary/cli.py b/legendary/cli.py index ca3cce9..8cc9f5d 100644 --- a/legendary/cli.py +++ b/legendary/cli.py @@ -911,7 +911,7 @@ class LegendaryCLI: if config_tags: self.core.lgd.config.remove_option(game.app_name, 'install_tags') config_tags = None - self.core.lgd.config.set(game.app_name, 'disable_sdl', True) + self.core.lgd.config.set(game.app_name, 'disable_sdl', 'true') sdl_enabled = False # just disable SDL, but keep config tags that have been manually specified elif config_disable_sdl or args.disable_sdl: