This commit is contained in:
ekeeke 2020-05-30 15:03:17 +02:00
commit accf5ef788
2 changed files with 6 additions and 2 deletions

View File

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

View File

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