1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-05 09:48:42 +00:00

Reduce char variable sizes

This commit is contained in:
twinaphex 2016-10-27 10:33:50 +02:00
parent 13cc4787f2
commit 70cbecd9f8
2 changed files with 3 additions and 3 deletions

View File

@ -320,8 +320,8 @@ typedef struct settings
struct
{
char buildbot_url[PATH_MAX_LENGTH];
char buildbot_assets_url[PATH_MAX_LENGTH];
char buildbot_url[255];
char buildbot_assets_url[255];
bool buildbot_auto_extract_archive;
} network;

View File

@ -126,7 +126,7 @@ enum
static jmp_buf error_sjlj_context;
static enum rarch_core_type current_core_type = CORE_TYPE_PLAIN;
static enum rarch_core_type explicit_current_core_type = CORE_TYPE_PLAIN;
static char error_string[PATH_MAX_LENGTH] = {0};
static char error_string[255] = {0};
static retro_bits_t has_set_libretro_device;
static bool has_set_core = false;