(menu/menu_setting) Increase string size for "User %u" buffer"

Currently, the string gets cut off in german, because "Benutzer %u" doesn't fit in.
This commit is contained in:
Jan Holthuis 2015-06-26 03:58:06 +02:00
parent 5657e50dd1
commit 470d093b27

View File

@ -5911,7 +5911,7 @@ static bool setting_append_list_input_player_options(
* Keep it up to date or you'll get some really obvious bugs.
* 2 is the length of '99'; we don't need more users than that.
*/
static char buffer[MAX_USERS][7+2+1];
static char buffer[MAX_USERS][13+2+1];
static char group_lbl[MAX_USERS][PATH_MAX_LENGTH];
unsigned i;
rarch_setting_group_info_t group_info = {0};