mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 00:20:01 +00:00
Reduce char variable sizes
This commit is contained in:
parent
13cc4787f2
commit
70cbecd9f8
@ -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;
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user