mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00
18 lines
883 B
C
18 lines
883 B
C
|
|
static const char *men_hscaling_opts[] = { "OFF", "4:3", "wide", "fullscreen", NULL };
|
|
static const char *men_vscaling_opts[] = { "OFF", "PAL", "fullscreen", NULL };
|
|
static const char *men_filter_opts[] = { "OFF", "bilinear" };
|
|
|
|
#define MENU_OPTIONS_GFX \
|
|
mee_enum ("Horizontal scaling", MA_OPT_SCALING, currentConfig.scaling, men_hscaling_opts), \
|
|
mee_enum ("Vertical scaling", MA_OPT_VSCALING, currentConfig.vscaling, men_vscaling_opts), \
|
|
mee_enum_h ("Scaler type", MA_OPT3_FILTERING, currentConfig.filter, men_filter_opts, NULL), \
|
|
mee_range ("Gamma adjustment", MA_OPT3_GAMMAA, currentConfig.gamma, -4, 16), \
|
|
mee_range ("Black level", MA_OPT3_BLACKLVL, currentConfig.gamma2, 0, 2), \
|
|
mee_onoff ("Wait for vsync", MA_OPT3_VSYNC, currentConfig.EmuOpt, EOPT_VSYNC), \
|
|
|
|
#define MENU_OPTIONS_ADV
|
|
|
|
void psp_menu_init(void)
|
|
{
|
|
}
|