mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
psp, revisit scaling
This commit is contained in:
parent
4b24b6b74c
commit
fc07fe2b4e
3 changed files with 21 additions and 19 deletions
|
@ -1,11 +1,11 @@
|
|||
|
||||
static const char *men_hscaling_opts[] = { "OFF", "4:3", "wide", "fullscreen", NULL };
|
||||
static const char *men_vscaling_opts[] = { "OFF", "4:3", "fullscreen", NULL };
|
||||
static const char *men_vscaling_opts[] = { "OFF", "fullscreen", "borderless", NULL };
|
||||
static const char *men_hscaling_opts[] = { "1:1", "4:3", "extended", "fullwidth", NULL };
|
||||
static const char *men_filter_opts[] = { "nearest", "bilinear", NULL };
|
||||
|
||||
#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 ("Aspect ratio", MA_OPT_SCALING, currentConfig.scaling, men_hscaling_opts), \
|
||||
mee_enum ("Scaler type", MA_OPT3_FILTERING, currentConfig.filter, men_filter_opts), \
|
||||
mee_range ("Gamma adjustment", MA_OPT3_GAMMAA, currentConfig.gamma, -4, 16), \
|
||||
mee_range ("Black level", MA_OPT3_BLACKLVL, currentConfig.gamma2, 0, 2), \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue