Skip to content

Commit

Permalink
[cli] Fix setting "disable_sdl" config option
Browse files Browse the repository at this point in the history
These have to be strings, whoops.
  • Loading branch information
derrod committed Sep 30, 2023
1 parent 013f7d4 commit c6e622f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion legendary/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -911,7 +911,7 @@ def install_game(self, args):
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:
Expand Down

0 comments on commit c6e622f

Please sign in to comment.