1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Add string ids for scenario name window

This commit is contained in:
Alexander Overvoorde
2015-11-16 17:56:51 +01:00
committed by IntelOrca
parent b83e570230
commit 0f065cf4a9
2 changed files with 4 additions and 1 deletions

View File

@@ -1802,6 +1802,9 @@ enum {
STR_CHANGE_NAME_OF_SCENARIO_TIP = 3296,
STR_CHANGE_DETAIL_NOTES_ABOUT_PARK_SCENARIO_TIP = 3297,
STR_SCENARIO_NAME = 3313,
STR_ENTER_SCENARIO_NAME = 3314,
STR_NO_DETAILS_YET = 3317,
STR_SELECT_WHICH_GROUP_THIS_SCENARIO_APPEARS_IN = 3318,

View File

@@ -407,7 +407,7 @@ static void window_editor_objective_options_main_mouseup(rct_window *w, int widg
break;
case WIDX_SCENARIO_NAME:
safe_strncpy((char*)0x009BC677, s6Info->name, 64);
window_text_input_open(w, WIDX_SCENARIO_NAME, 3313, 3314, 3165, 0, 64);
window_text_input_open(w, WIDX_SCENARIO_NAME, STR_SCENARIO_NAME, STR_ENTER_SCENARIO_NAME, 3165, 0, 64);
break;
case WIDX_DETAILS:
safe_strncpy((char*)0x009BC677, s6Info->details, 256);