mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-24 15:05:39 +00:00
Add comments to build_preset_list_options()
This commit is contained in:
parent
ffa7753618
commit
155e331a43
|
@ -46,6 +46,8 @@ change_preset_dialog() {
|
||||||
build_preset_list_options() {
|
build_preset_list_options() {
|
||||||
# This function will build a list of all the systems available for a given preset
|
# This function will build a list of all the systems available for a given preset
|
||||||
# The list will be generated into a Godot temp file and the variable $current_preset_settings
|
# The list will be generated into a Godot temp file and the variable $current_preset_settings
|
||||||
|
# The other arrays built (all_systems, changed_systems etc.) are also used in the make_preset_changes() function, so this needs to be called in the same memory space as that function at least once
|
||||||
|
# USAGE: build_preset_list_options "$preset"
|
||||||
|
|
||||||
if [[ -f "$godot_current_preset_settings" ]]; then
|
if [[ -f "$godot_current_preset_settings" ]]; then
|
||||||
rm -f "$godot_current_preset_settings" # Godot data transfer temp files
|
rm -f "$godot_current_preset_settings" # Godot data transfer temp files
|
||||||
|
|
Loading…
Reference in a new issue