mirror of
https://github.com/libretro/RetroArch
synced 2025-04-01 13:20:43 +00:00
Reduce char variable sizes
This commit is contained in:
parent
13cc4787f2
commit
70cbecd9f8
@ -320,8 +320,8 @@ typedef struct settings
|
|||||||
|
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
char buildbot_url[PATH_MAX_LENGTH];
|
char buildbot_url[255];
|
||||||
char buildbot_assets_url[PATH_MAX_LENGTH];
|
char buildbot_assets_url[255];
|
||||||
bool buildbot_auto_extract_archive;
|
bool buildbot_auto_extract_archive;
|
||||||
} network;
|
} network;
|
||||||
|
|
||||||
|
@ -126,7 +126,7 @@ enum
|
|||||||
static jmp_buf error_sjlj_context;
|
static jmp_buf error_sjlj_context;
|
||||||
static enum rarch_core_type current_core_type = CORE_TYPE_PLAIN;
|
static enum rarch_core_type current_core_type = CORE_TYPE_PLAIN;
|
||||||
static enum rarch_core_type explicit_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 retro_bits_t has_set_libretro_device;
|
||||||
static bool has_set_core = false;
|
static bool has_set_core = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user