mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-21 21:45:39 +00:00
Unlocalize presets-related variables for use between functions.
This commit is contained in:
parent
66e7af978c
commit
79b755a45d
|
@ -41,14 +41,14 @@ build_preset_list_options() {
|
||||||
fi
|
fi
|
||||||
touch "$godot_current_preset_settings"
|
touch "$godot_current_preset_settings"
|
||||||
|
|
||||||
local preset="$1"
|
preset="$1"
|
||||||
pretty_preset_name=${preset//_/ } # Preset name prettification
|
pretty_preset_name=${preset//_/ } # Preset name prettification
|
||||||
pretty_preset_name=$(echo $pretty_preset_name | awk '{for(i=1;i<=NF;i++){$i=toupper(substr($i,1,1))substr($i,2)}}1') # Preset name prettification
|
pretty_preset_name=$(echo $pretty_preset_name | awk '{for(i=1;i<=NF;i++){$i=toupper(substr($i,1,1))substr($i,2)}}1') # Preset name prettification
|
||||||
local current_preset_settings=()
|
current_preset_settings=()
|
||||||
local current_enabled_systems=()
|
current_enabled_systems=()
|
||||||
local current_disabled_systems=()
|
current_disabled_systems=()
|
||||||
local changed_systems=()
|
changed_systems=()
|
||||||
local changed_presets=()
|
changed_presets=()
|
||||||
local section_results=$(sed -n '/\['"$preset"'\]/, /\[/{ /\['"$preset"'\]/! { /\[/! p } }' $rd_conf | sed '/^$/d')
|
local section_results=$(sed -n '/\['"$preset"'\]/, /\[/{ /\['"$preset"'\]/! { /\[/! p } }' $rd_conf | sed '/^$/d')
|
||||||
|
|
||||||
while IFS= read -r config_line
|
while IFS= read -r config_line
|
||||||
|
|
Loading…
Reference in a new issue