diff options
author | George L. Albany <Megacake1234@gmail.com> | 2023-07-09 02:14:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-09 02:14:54 +0200 |
commit | 1d8accc1ca6b30120732c56233e5d74e860de1bb (patch) | |
tree | 97c167b06a8b2f2b868107414b5676ccb5fcb53b /game/src/Game/Menu/OptionMenu/MonitorDisplaySelector.gd | |
parent | d05bff0c40a482a9bb44877fe76b1e0efb2e1a68 (diff) | |
parent | 86bee7b44c7cc7adaef8cdf441667a99223dd98a (diff) |
Merge pull request #135 from Spartan322/generalize/loading-and-events
Diffstat (limited to 'game/src/Game/Menu/OptionMenu/MonitorDisplaySelector.gd')
-rw-r--r-- | game/src/Game/Menu/OptionMenu/MonitorDisplaySelector.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/game/src/Game/Menu/OptionMenu/MonitorDisplaySelector.gd b/game/src/Game/Menu/OptionMenu/MonitorDisplaySelector.gd index 028b3df..c3beaf6 100644 --- a/game/src/Game/Menu/OptionMenu/MonitorDisplaySelector.gd +++ b/game/src/Game/Menu/OptionMenu/MonitorDisplaySelector.gd @@ -15,7 +15,7 @@ func _notification(what : int): func _update_monitor_options_text() -> void: for index in get_item_count(): - set_item_text(index, tr("OPTIONS_VIDEO_MONITOR").format({ "index": Events.Localisation.tr_number(index + 1) })) + set_item_text(index, tr("OPTIONS_VIDEO_MONITOR").format({ "index": Localisation.tr_number(index + 1) })) func _on_option_selected(index : int, by_user : bool) -> void: if _valid_index(index): |