Genesis-Plus-GX/source/ngc/config.h

51 lines
1017 B
C
Raw Normal View History

2008-08-07 14:26:07 +02:00
#ifndef _CONFIG_H_
#define _CONFIG_H_
/****************************************************************************
* Config Option
*
****************************************************************************/
typedef struct
{
char version[15];
2008-08-07 14:26:07 +02:00
double psg_preamp;
double fm_preamp;
uint8 boost;
2008-08-21 22:34:00 +02:00
uint8 filter;
2008-08-07 14:26:07 +02:00
uint8 hq_fm;
uint8 fm_core;
int8 sram_auto;
int8 freeze_auto;
uint8 region_detect;
uint8 force_dtack;
uint8 bios_enabled;
int16 xshift;
int16 yshift;
int16 xscale;
int16 yscale;
uint8 tv_mode;
uint8 aspect;
uint8 overscan;
uint8 render;
uint8 ntsc;
uint8 bilinear;
2008-08-07 14:26:07 +02:00
uint16 pad_keymap[4][MAX_KEYS];
uint32 wpad_keymap[4*3][MAX_KEYS];
t_input_config input[MAX_DEVICES];
uint8 gun_cursor;
uint8 invert_mouse;
2008-08-07 14:26:07 +02:00
} t_config;
/* Global data */
t_config config;
2008-08-07 14:26:07 +02:00
extern void config_save();
extern void config_load();
extern void set_config_defaults(void);
2008-10-12 21:56:35 +02:00
extern bool use_FAT;
2008-08-07 14:26:07 +02:00
#endif /* _CONFIG_H_ */