Fix length of max scenario name in scenario editor

This commit is contained in:
Alexander Overvoorde 2015-11-16 17:50:52 +01:00 committed by IntelOrca
parent c1ed727067
commit b83e570230
1 changed files with 1 additions and 1 deletions

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, 32);
window_text_input_open(w, WIDX_SCENARIO_NAME, 3313, 3314, 3165, 0, 64);
break;
case WIDX_DETAILS:
safe_strncpy((char*)0x009BC677, s6Info->details, 256);