mirror of
https://github.com/libretro/smsplus-gx.git
synced 2024-12-03 23:30:49 +00:00
24 lines
383 B
C
24 lines
383 B
C
#ifndef CONFIG_H__
|
|
#define CONFIG_H__
|
|
|
|
typedef struct {
|
|
int32_t fullscreen;
|
|
int32_t fullspeed;
|
|
int32_t nosound;
|
|
int32_t joystick;
|
|
int32_t sndrate;
|
|
int32_t country;
|
|
int32_t console;
|
|
int32_t fm;
|
|
int32_t ntsc;
|
|
int32_t spritelimit;
|
|
int32_t extra_gg;
|
|
int32_t tms_pal;
|
|
char game_name[0x100];
|
|
uint8_t use_bios;
|
|
uint8_t soundlevel;
|
|
} t_config;
|
|
extern t_config option;
|
|
|
|
#endif
|