mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-05 10:25:07 +01:00
33 lines
633 B
C
33 lines
633 B
C
|
|
||
|
#ifndef _CONFIG_H_
|
||
|
#define _CONFIG_H_
|
||
|
|
||
|
/****************************************************************************
|
||
|
* Config Option
|
||
|
*
|
||
|
****************************************************************************/
|
||
|
typedef struct
|
||
|
{
|
||
|
double psg_preamp;
|
||
|
double fm_preamp;
|
||
|
uint8 boost;
|
||
|
uint8 filter;
|
||
|
uint8 hq_fm;
|
||
|
uint8 fm_core;
|
||
|
uint8 region_detect;
|
||
|
uint8 force_dtack;
|
||
|
uint8 bios_enabled;
|
||
|
uint8 tv_mode;
|
||
|
uint8 aspect;
|
||
|
uint8 overscan;
|
||
|
uint8 render;
|
||
|
uint8 gun_cursor;
|
||
|
uint8 invert_mouse;
|
||
|
} t_config;
|
||
|
|
||
|
/* Global variables */
|
||
|
extern t_config config;
|
||
|
|
||
|
#endif /* _CONFIG_H_ */
|
||
|
|