Skip to content

Commit

Permalink
Core option reordering
Browse files Browse the repository at this point in the history
  • Loading branch information
sonninnos committed Feb 27, 2024
1 parent a4823f3 commit dbd26c3
Showing 1 changed file with 37 additions and 37 deletions.
74 changes: 37 additions & 37 deletions libretro_core_options.h
Expand Up @@ -1031,6 +1031,24 @@ struct retro_core_option_v2_definition option_defs_us[] = {
},
"100%(native)"
},
{
BEETLE_OPT(gpu_overclock),
"GPU Rasterizer Overclock",
NULL,
"Enable overclocking of the 2D rasterizer contained within the emulated PSX's GPU. Does not improve 3D rendering, and in general has little effect.",
NULL,
"hacks",
{
{ "1x(native)", "1x (Native)" },
{ "2x", NULL },
{ "4x", NULL },
{ "8x", NULL },
{ "16x", NULL },
{ "32x", NULL },
{ NULL, NULL },
},
"1x(native)"
},
{
BEETLE_OPT(gte_overclock),
"GTE Overclock",
Expand Down Expand Up @@ -1212,6 +1230,21 @@ struct retro_core_option_v2_definition option_defs_us[] = {
},
"disabled"
},
{
BEETLE_OPT(aspect_ratio),
"Core Aspect Ratio",
NULL,
"Choose core provided aspect ratio. This setting is ignored when the Widescreen Mode Hack or Display Full VRAM options are enabled.",
NULL,
"video",
{
{ "corrected", "Corrected" },
{ "uncorrected", "Uncorrected" },
{ "4:3", "Force 4:3" },
{ "ntsc", "Force NTSC" },
},
"corrected"
},
{
BEETLE_OPT(crop_overscan),
"Crop Overscan",
Expand Down Expand Up @@ -1280,7 +1313,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "-3px", NULL },
{ "-2px", NULL },
{ "-1px", NULL },
{ "disabled", "0 (Default)" },
{ "disabled", "0" },
{ "+1px", NULL },
{ "+2px", NULL },
{ "+3px", NULL },
Expand Down Expand Up @@ -1346,7 +1379,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "-3", NULL },
{ "-2", NULL },
{ "-1", NULL },
{ "0", "0 (Default)" },
{ "0", "0" },
{ "+1", NULL },
{ "+2", NULL },
{ "+3", NULL },
Expand Down Expand Up @@ -1392,39 +1425,6 @@ struct retro_core_option_v2_definition option_defs_us[] = {
"0"
},
#endif
{
BEETLE_OPT(gpu_overclock),
"GPU Rasterizer Overclock",
NULL,
"Enable overclocking of the 2D rasterizer contained within the emulated PSX's GPU. Does not improve 3D rendering, and in general has little effect.",
NULL,
"video",
{
{ "1x(native)", "1x (Native)" },
{ "2x", NULL },
{ "4x", NULL },
{ "8x", NULL },
{ "16x", NULL },
{ "32x", NULL },
{ NULL, NULL },
},
"1x(native)"
},
{
BEETLE_OPT(aspect_ratio),
"Core Aspect Ratio",
NULL,
"Choose core provided aspect ratio. This setting is ignored when the Widescreen Mode Hack or Display Full VRAM options are enabled.",
NULL,
"video",
{
{ "corrected", "Corrected" },
{ "uncorrected", "Uncorrected" },
{ "4:3", "Force 4:3" },
{ "ntsc", "Force NTSC" },
},
"corrected"
},
{
BEETLE_OPT(initial_scanline),
"Initial Scan Line - NTSC",
Expand All @@ -1433,7 +1433,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
NULL,
"video",
{
{ "0", NULL },
{ "0", "0 (Default)" },
{ "1", NULL },
{ "2", NULL },
{ "3", NULL },
Expand Down Expand Up @@ -1528,7 +1528,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
NULL,
"video",
{
{ "0", NULL },
{ "0", "0 (Default)" },
{ "1", NULL },
{ "2", NULL },
{ "3", NULL },
Expand Down

0 comments on commit dbd26c3

Please sign in to comment.