2008-08-21 22:34:00 +02:00
|
|
|
|
|
|
|
#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;
|
2008-10-13 18:07:02 +02:00
|
|
|
uint8 ntsc;
|
2008-08-21 22:34:00 +02:00
|
|
|
uint8 gun_cursor;
|
|
|
|
uint8 invert_mouse;
|
|
|
|
} t_config;
|
|
|
|
|
|
|
|
/* Global variables */
|
|
|
|
extern t_config config;
|
|
|
|
|
|
|
|
#endif /* _CONFIG_H_ */
|
|
|
|
|