mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2025-04-10 19:15:12 +00:00
On branch feat/godot-configurator
Changes to be committed: modified: tools/configurator/main.gd
This commit is contained in:
parent
3bf76b059d
commit
b4df4b8903
|
@ -49,14 +49,14 @@ func _on_quickresume_advanced_pressed():
|
||||||
|
|
||||||
func _on_bios_button_pressed():
|
func _on_bios_button_pressed():
|
||||||
bios_type = 0
|
bios_type = 0
|
||||||
log_parameters[2] += "Bios_Check"
|
log_parameters[2] = log_text + "Bios_Check"
|
||||||
log_results = class_functions.execute_command(wrapper_command, log_parameters, false)
|
log_results = class_functions.execute_command(wrapper_command, log_parameters, false)
|
||||||
load_popup("BIOS File Check", "res://components/bios_check/bios_popup_content.tscn")
|
load_popup("BIOS File Check", "res://components/bios_check/bios_popup_content.tscn")
|
||||||
status_code_label.text = str(log_results["exit_code"])
|
status_code_label.text = str(log_results["exit_code"])
|
||||||
|
|
||||||
func _on_bios_button_expert_pressed():
|
func _on_bios_button_expert_pressed():
|
||||||
bios_type = 1
|
bios_type = 1
|
||||||
log_parameters[2] += "Advanced_Bios_Check"
|
log_parameters[2] = log_text + "Advanced_Bios_Check"
|
||||||
log_results = class_functions.execute_command(wrapper_command, log_parameters, false)
|
log_results = class_functions.execute_command(wrapper_command, log_parameters, false)
|
||||||
load_popup("BIOS File Check", "res://components/bios_check/bios_popup_content.tscn")
|
load_popup("BIOS File Check", "res://components/bios_check/bios_popup_content.tscn")
|
||||||
status_code_label.text = str(log_results["exit_code"])
|
status_code_label.text = str(log_results["exit_code"])
|
||||||
|
|
Loading…
Reference in a new issue