From 3328ab2718a14a3eb9aa2d72f308da6e8b16049d Mon Sep 17 00:00:00 2001 From: codemann8 Date: Sun, 19 Nov 2023 14:07:47 -0600 Subject: [PATCH] Added missing saved user settings in Adjust tab --- source/gui/bottom.py | 4 +++- source/gui/loadcliargs.py | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/source/gui/bottom.py b/source/gui/bottom.py index 4c21621e..839f2dc9 100644 --- a/source/gui/bottom.py +++ b/source/gui/bottom.py @@ -259,7 +259,9 @@ def create_guiargs(parent): "heartbeep": "heartbeep", "menuspeed": "fastmenu", "owpalettes": "ow_palettes", - "uwpalettes": "uw_palettes" + "uwpalettes": "uw_palettes", + "reduce_flashing": "reduce_flashing", + "shuffle_sfx": "shuffle_sfx" } for adjustarg in adjustargs: internal = adjustargs[adjustarg] diff --git a/source/gui/loadcliargs.py b/source/gui/loadcliargs.py index aec14a72..d99f6c9a 100644 --- a/source/gui/loadcliargs.py +++ b/source/gui/loadcliargs.py @@ -206,7 +206,9 @@ def loadadjustargs(gui, settings): "heartbeep": "adjust.heartbeep", "menuspeed": "adjust.menuspeed", "owpalettes": "adjust.owpalettes", - "uwpalettes": "adjust.uwpalettes" + "uwpalettes": "adjust.uwpalettes", + "reduce_flashing": "adjust.reduce_flashing", + "shuffle_sfx": "adjust.shuffle_sfx" } } }