Skip to content

Commit 2a80a04

Browse files
committed
Fix generic emulator names on first time wizard
1 parent e05ab96 commit 2a80a04

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scenes/popups/first_time/EmulatorsSection.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ func handle_emulator_info(system_raw: Dictionary) -> bool:
9696
var emulator : Dictionary = emulators[system_emulator]
9797
parent.add_child(generic_info)
9898

99-
generic_info.set_name(emulator["fullname"])
99+
generic_info.set_emu_name(emulator["fullname"])
100100
if not icon_cache.has(system_emulator):
101101
icon_cache[system_emulator] = RetroHubGenericEmulator.load_icon(system_emulator)
102102
generic_info.set_logo(icon_cache[system_emulator])

scenes/popups/first_time/GenericEmulatorInfo.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ var found := false
1010
func _ready():
1111
n_accessibility_focus._on_config_ready(RetroHubConfig.config)
1212

13-
func set_name(_name: String):
13+
func set_emu_name(_name: String):
1414
n_name.text = _name
1515

1616
func set_logo(texture: Texture2D):

0 commit comments

Comments
 (0)