mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-05 10:25:07 +01:00
33 lines
605 B
C
33 lines
605 B
C
|
|
#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;
|
|
config.filter = 1;
|
|
config.hq_fm = 2;
|
|
config.fm_core = 0;
|
|
|
|
/* system options */
|
|
config.region_detect = 0;
|
|
config.force_dtack = 0;
|
|
config.bios_enabled = 0;
|
|
|
|
/* display options */
|
|
config.aspect = 1;
|
|
config.overscan = 1;
|
|
config.render = 1;
|
|
config.ntsc = 0;
|
|
|
|
/* controllers options */
|
|
config.gun_cursor = 1;
|
|
config.invert_mouse = 0;
|
|
}
|
|
|