Merge pull request #319 from carmiker/master

Fix libretro build for GCC 10
This commit is contained in:
ekeeke 2020-05-16 08:19:32 +02:00 committed by GitHub
commit 9316c9ef48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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];