2008-08-21 22:34:00 +02:00
|
|
|
|
|
|
|
#include "osd.h"
|
|
|
|
|
|
|
|
t_config config;
|
|
|
|
|
|
|
|
|
|
|
|
void set_config_defaults(void)
|
|
|
|
{
|
|
|
|
/* sound options */
|
|
|
|
config.psg_preamp = 1.5;
|
|
|
|
config.fm_preamp = 1.0;
|
|
|
|
config.boost = 1;
|
2008-08-26 17:58:27 +02:00
|
|
|
config.filter = 1;
|
2008-10-13 18:07:02 +02:00
|
|
|
config.hq_fm = 2;
|
2008-08-26 17:58:27 +02:00
|
|
|
config.fm_core = 0;
|
2008-08-21 22:34:00 +02:00
|
|
|
|
|
|
|
/* system options */
|
|
|
|
config.region_detect = 0;
|
|
|
|
config.force_dtack = 0;
|
|
|
|
config.bios_enabled = 0;
|
|
|
|
|
|
|
|
/* display options */
|
|
|
|
config.aspect = 1;
|
|
|
|
config.overscan = 1;
|
2008-10-13 18:07:02 +02:00
|
|
|
config.render = 1;
|
|
|
|
config.ntsc = 0;
|
2008-08-21 22:34:00 +02:00
|
|
|
|
|
|
|
/* controllers options */
|
|
|
|
config.gun_cursor = 1;
|
|
|
|
config.invert_mouse = 0;
|
|
|
|
}
|
|
|
|
|