1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 19:13:07 +01:00

Fix #8102: 'Create new title sequence' dialog is named 'Duplicate'

Not sure why it was done like this is the first place, considering the necessary string already existed.
This commit is contained in:
Michael Steenbeek
2018-10-17 10:31:06 +02:00
committed by GitHub
parent 685128c740
commit 0ec3d90495

View File

@@ -293,9 +293,8 @@ static void window_title_editor_mouseup(rct_window* w, rct_widgetindex widgetInd
case WIDX_TITLE_EDITOR_NEW_BUTTON:
if (!commandEditorOpen)
{
// TODO: This should probably be 'NEW'
window_text_input_open(
w, widgetIndex, STR_TITLE_EDITOR_ACTION_DUPLICATE, STR_TITLE_EDITOR_ENTER_NAME_FOR_SEQUENCE, STR_NONE, 0,
w, widgetIndex, STR_TITLE_EDITOR_ACTION_CREATE, STR_TITLE_EDITOR_ENTER_NAME_FOR_SEQUENCE, STR_NONE, 0,
64);
}
break;