there is no need for these to be so big

This commit is contained in:
radius 2019-02-07 17:49:46 -05:00
parent f60923c4a9
commit 701ac1dd72
2 changed files with 11 additions and 11 deletions

View File

@ -96,7 +96,7 @@ endif
DEF_FLAGS += -Wall $(INCLUDE_DIRS) -I. -Ideps -Ideps/stb
CFLAGS += $(DEF_FLAGS) -Wformat-truncation
CFLAGS += $(DEF_FLAGS)
CXXFLAGS += $(DEF_FLAGS) -std=c++11 -D__STDC_CONSTANT_MACROS
OBJCFLAGS := $(CFLAGS) -D__STDC_CONSTANT_MACROS

View File

@ -66,15 +66,15 @@ enum netplay_host_method
struct netplay_room
{
int id;
char nickname [PATH_MAX_LENGTH];
char address [PATH_MAX_LENGTH];
char mitm_address[PATH_MAX_LENGTH];
char nickname [2048];
char address [2048];
char mitm_address[2048];
int port;
int mitm_port;
char corename [PATH_MAX_LENGTH];
char frontend [PATH_MAX_LENGTH];
char coreversion [PATH_MAX_LENGTH];
char gamename [PATH_MAX_LENGTH];
char corename [2048];
char frontend [2048];
char coreversion [2048];
char gamename [2048];
int gamecrc;
int timestamp;
int host_method;
@ -82,9 +82,9 @@ struct netplay_room
bool has_spectate_password;
bool lan;
bool fixed;
char retroarch_version[PATH_MAX_LENGTH];
char subsystem_name[PATH_MAX_LENGTH];
char country[PATH_MAX_LENGTH];
char retroarch_version [2048];
char subsystem_name [2048];
char country[2048];
struct netplay_room *next;
};