Reduce size of path_config_append_file - too big - see warning

configuration.c:3710:10: note: 'snprintf' output 2 or more bytes (assuming 4097) into a destination of size 4096
This commit is contained in:
twinaphex 2021-08-12 17:39:27 +02:00
parent cd69803427
commit 28417a02b7

View File

@ -2152,7 +2152,7 @@ struct rarch_state
char path_content[PATH_MAX_LENGTH];
char path_libretro[PATH_MAX_LENGTH];
char path_config_file[PATH_MAX_LENGTH];
char path_config_append_file[PATH_MAX_LENGTH];
char path_config_append_file[256];
char path_core_options_file[PATH_MAX_LENGTH];
char dir_system[PATH_MAX_LENGTH];
char dir_savefile[PATH_MAX_LENGTH];