aboutsummaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authorneonloop2023-01-11 16:28:41 +0000
committerneonloop2023-01-11 16:28:41 +0000
commit13447e236c51cd48372355e5c4d5e5379d39b892 (patch)
tree274173ac0d1e8cc0ef251f43e5dc37b2be058d90 /menu.c
parent319f038a28907277890b6122c4caf07842a4936c (diff)
downloadpicoarch-13447e236c51cd48372355e5c4d5e5379d39b892.tar.gz
picoarch-13447e236c51cd48372355e5c4d5e5379d39b892.tar.bz2
picoarch-13447e236c51cd48372355e5c4d5e5379d39b892.zip
Limits width for crop scaler to 320px
Makes crop scaler more useful for PlayStation / SNES games that use high horizontal resolution
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/menu.c b/menu.c
index eee7b19..92da59c 100644
--- a/menu.c
+++ b/menu.c
@@ -492,6 +492,8 @@ static const char h_scale_filter[] =
"When stretching, how missing pixels are filled.\n"
"Nearest copies the last pixel. Sharp keeps pixels\n"
"aligned where possible. Smooth adds a blur effect.";
+
+static const char *men_scale_size[] = { "Native", "Aspect", "Full", NULL};
#else
static const char h_enable_drc[] =
"Dynamically adjusts audio rate for\n"
@@ -503,19 +505,20 @@ static const char h_audio_buffer_size[] =
"crackling at the cost of delayed sound.";
static const char h_scale_size[] =
- "How much to stretch the screen when\n"
- "scaling. Native does no stretching.\n"
- "Aspect uses the correct aspect ratio.\n"
- "Full uses the whole screen.";
+ "How to fill the display. Native does\n"
+ "no stretching. Aspect keeps the correct\n"
+ "aspect ratio. Full uses the whole\n"
+ "screen. Crop hides pixels on the sides.";
static const char h_scale_filter[] =
"When stretching, how missing pixels\n"
"are filled. Nearest copies the last\n"
"pixel. Sharp tries to keep pixels\n"
"aligned. Smooth adds a blur effect.";
-#endif
static const char *men_scale_size[] = { "Native", "Aspect", "Full", "Crop", NULL};
+#endif
+
static const char *men_scale_filter[] = { "Nearest", "Sharp", "Smooth", NULL};
static menu_entry e_menu_video_options[] =