Change function name for get_setting

This commit is contained in:
icenine451 2022-10-21 14:58:50 -04:00
parent b42d046c20
commit 1156851c32
2 changed files with 11 additions and 11 deletions

View file

@ -80,9 +80,9 @@ move() {
fi fi
} }
set_setting() { set_setting_value() {
# Function for editing settings # Function for editing settings
# USAGE: set_setting $setting_file $setting_name $new_setting_value $system (needed as different systems use different config file syntax) # USAGE: set_setting_value $setting_file $setting_name $new_setting_value $system (needed as different systems use different config file syntax)
# NOTES: RPCS3 has special conditions, see comments below # NOTES: RPCS3 has special conditions, see comments below
case $4 in case $4 in
@ -140,9 +140,9 @@ case $4 in
esac esac
} }
get_setting() { get_setting_value() {
# Function for getting the current value of a setting from a config file # Function for getting the current value of a setting from a config file
# USAGE: get_setting $setting_file $setting_name $system (needed as different systems use different config file syntax) # USAGE: get_setting_value $setting_file $setting_name $system (needed as different systems use different config file syntax)
case $3 in case $3 in

View file

@ -216,11 +216,11 @@ configurator_retroachivement_dialog() {
user=${arrIN[0]} user=${arrIN[0]}
pass=${arrIN[1]} pass=${arrIN[1]}
#set_setting $raconf cheevos_enable true retroarch #set_setting_value $raconf cheevos_enable true retroarch
#set_setting $raconf cheevos_username $user retroarch #set_setting_value $raconf cheevos_username $user retroarch
#set_setting $raconf cheevos_password $pass retroarch #set_setting_value $raconf cheevos_password $pass retroarch
debug_dialog "set_setting $raconf cheevos_enable true retroarch\n\nset_setting $raconf cheevos_username $user retroarch\n\nset_setting $raconf cheevos_password $pass retroarch" debug_dialog "set_setting_value $raconf cheevos_enable true retroarch\n\nset_setting_value $raconf cheevos_username $user retroarch\n\nset_setting_value $raconf cheevos_password $pass retroarch"
configurator_process_complete_dialog "logging in to RetroAchievements" configurator_process_complete_dialog "logging in to RetroAchievements"
} }
@ -312,7 +312,7 @@ configurator_power_user_changes_dialog() {
} }
configurator_retroarch_rewind_dialog() { configurator_retroarch_rewind_dialog() {
if [[ $(get_setting $raconf rewind_enable retroarch) == "true" ]]; then if [[ $(get_setting_value $raconf rewind_enable retroarch) == "true" ]]; then
zenity --question --width=800 --height=600 \ zenity --question --width=800 --height=600 \
--no-wrap --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ --no-wrap --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
--title "RetroDECK Configurator - Rewind" \ --title "RetroDECK Configurator - Rewind" \
@ -320,7 +320,7 @@ configurator_retroarch_rewind_dialog() {
if [ $? == 0 ] if [ $? == 0 ]
then then
debug_dialog "set_setting $raconf rewind_enable true retroarch" debug_dialog "set_setting_value $raconf rewind_enable true retroarch"
configurator_process_complete_dialog "enabling Rewind" configurator_process_complete_dialog "enabling Rewind"
else else
configurator_options_dialog configurator_options_dialog
@ -333,7 +333,7 @@ configurator_retroarch_rewind_dialog() {
if [ $? == 0 ] if [ $? == 0 ]
then then
debug_dialog "set_setting $raconf rewind_enable false retroarch" debug_dialog "set_setting_value $raconf rewind_enable false retroarch"
configurator_process_complete_dialog "disabling Rewind" configurator_process_complete_dialog "disabling Rewind"
else else
configurator_options_dialog configurator_options_dialog