44 lines
855 B
C
Raw Normal View History

2008-08-21 20:34:00 +00:00
#include "osd.h"
#define CONFIG_VERSION "GENPLUS 1.2.1 "
t_config config;
void set_config_defaults(void)
{
/* version TAG */
strncpy(config.version,CONFIG_VERSION,15);
/* sound options */
config.psg_preamp = 1.5;
config.fm_preamp = 1.0;
config.boost = 1;
config.filter = 0;
config.hq_fm = 1;
config.fm_core = 0;
/* system options */
config.freeze_auto = -1;
config.sram_auto = -1;
config.region_detect = 0;
config.force_dtack = 0;
config.bios_enabled = 0;
/* display options */
config.xshift = 0;
config.yshift = 0;
config.xscale = 0;
config.yscale = 0;
config.aspect = 1;
config.overscan = 1;
config.render = 0;
/* controllers options */
config.gun_cursor = 1;
config.invert_mouse = 0;
}