#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 ntsc; uint8 gun_cursor; uint8 invert_mouse; } t_config; /* Global variables */ extern t_config config; #endif /* _CONFIG_H_ */