Fix libretro build for GCC 10

This commit is contained in:
Rupert Carmichael 2020-05-15 20:18:26 -04:00
parent 9630e59552
commit 7781577920
2 changed files with 6 additions and 2 deletions

View File

@ -99,6 +99,8 @@ STATIC_ASSERT(z80_overflow,
sms_ntsc_t *sms_ntsc;
md_ntsc_t *md_ntsc;
t_config config;
char GG_ROM[256];
char AR_ROM[256];
char SK_ROM[256];

View File

@ -87,7 +87,7 @@ typedef struct
uint8 padtype;
} t_input_config;
struct
typedef struct
{
char version[16];
uint8 hq_fm;
@ -129,7 +129,9 @@ struct
uint8 gun_cursor;
uint32 overclock;
uint8 no_sprite_limit;
} config;
} t_config;
extern t_config config;
extern char GG_ROM[256];
extern char AR_ROM[256];