Revert "Update core options"

This reverts commit 0bbcdde221.
This commit is contained in:
twinaphex 2021-08-17 10:27:27 +02:00
parent e582e629fd
commit c186838c87
2 changed files with 25 additions and 70 deletions

View File

@ -3519,26 +3519,6 @@ struct retro_core_option_v2_definition
* in the retro_core_option_value array, otherwise will be
* ignored */
const char *default_value;
/* Specify the type this option represents so the frontend
* can present the user an alternative input method besides
* a limited list of possible values.
* > If set to "int", all values need to be integers
* and a frontend with support for numerical input will
* allow input of any number betwen the lowest and
* highest defined value.
* > If set to "float", all values need to be numbers
* and a frontend with support for numerical input will
* allow input of any number betwen the lowest and
* highest defined value.
* > If set to "bool", there should be only two values
* "true" and "false" (label can be anything)
* The frontend can choose to show a checkbox for it.
* > If NULL or set to "enum", the frontend will show
* the list of values and input will be limited to them.
* Future versions of the specs could allow this for more
* types or to be "TYPE:MORE:OPTIONS" */
const char *type_info;
};
struct retro_core_options_v2

View File

@ -82,8 +82,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "Composite", NULL },
{ NULL, NULL},
},
"RGB",
NULL
"RGB"
},
{
"pce_nospritelimit",
@ -97,8 +96,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "enabled", NULL },
{ NULL, NULL },
},
"disabled",
"bool"
"disabled"
},
{
"pce_fast_frameskip",
@ -113,8 +111,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "manual", "Manual" },
{ NULL, NULL },
},
"disabled",
NULL
"disabled"
},
{
"pce_fast_frameskip_threshold",
@ -142,8 +139,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "60", NULL },
{ NULL, NULL },
},
"33",
"int"
"33"
},
{
"pce_hoverscan",
@ -182,8 +178,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "352", NULL },
{ NULL, NULL },
},
"352",
"int"
"352"
},
{
"pce_initial_scanline",
@ -236,8 +231,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "40", NULL },
{ NULL, NULL },
},
"3",
"int"
"3"
},
{
"pce_last_scanline",
@ -284,8 +278,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "242", NULL },
{ NULL, NULL },
},
"242",
"int"
"242"
},
{
"pce_mouse_sensitivity",
@ -317,8 +310,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "5.00", NULL },
{ NULL, NULL },
},
"1.25",
"float"
"1.25"
},
{
"pce_turbo_delay",
@ -345,8 +337,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "15", NULL },
{ NULL, NULL },
},
"3",
"int"
"3"
},
{
"pce_turbo_toggling",
@ -360,8 +351,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "enabled", NULL },
{ NULL, NULL },
},
"disabled",
"bool"
"disabled"
},
{
"pce_turbo_toggle_hotkey",
@ -375,8 +365,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "enabled", NULL },
{ NULL, NULL },
},
"disabled",
"bool"
"disabled"
},
{
"pce_sound_channel_0_volume",
@ -399,8 +388,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "100", NULL },
{ NULL, NULL },
},
"100",
"int"
"100"
},
{
"pce_sound_channel_1_volume",
@ -423,8 +411,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "100", NULL },
{ NULL, NULL },
},
"100",
"int"
"100"
},
{
"pce_sound_channel_2_volume",
@ -447,8 +434,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "100", NULL },
{ NULL, NULL },
},
"100",
"int"
"100"
},
{
"pce_sound_channel_3_volume",
@ -471,8 +457,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "100", NULL },
{ NULL, NULL },
},
"100",
"int"
"100"
},
{
"pce_sound_channel_4_volume",
@ -495,8 +480,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "100", NULL },
{ NULL, NULL },
},
"100",
"int"
"100"
},
{
"pce_sound_channel_5_volume",
@ -519,8 +503,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "100", NULL },
{ NULL, NULL },
},
"100",
"int"
"100"
},
{
"pce_fast_cdimagecache",
@ -534,8 +517,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "enabled", NULL },
{ NULL, NULL },
},
"disabled",
"bool"
"disabled"
},
{
"pce_fast_cdbios",
@ -553,8 +535,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "System Card 3 US", NULL },
{ NULL, NULL },
},
"System Card 3",
NULL
"System Card 3"
},
{
"pce_ocmultiplier",
@ -580,8 +561,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "50", NULL },
{ NULL, NULL },
},
"1",
"int"
"1"
},
{
"pce_disable_softreset",
@ -595,8 +575,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "enabled", NULL },
{ NULL, NULL },
},
"disabled",
"bool"
"disabled"
},
{
"pce_cdspeed",
@ -612,8 +591,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "8", NULL },
{ NULL, NULL },
},
"1",
"int"
"1"
},
{
"pce_cddavolume",
@ -646,8 +624,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "200", NULL },
{ NULL, NULL },
},
"100",
"int"
"100"
},
{
"pce_adpcmvolume",
@ -680,8 +657,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "200", NULL },
{ NULL, NULL },
},
"100",
"int"
"100"
},
{
"pce_cdpsgvolume",
@ -714,8 +690,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "200", NULL },
{ NULL, NULL },
},
"100",
"int"
"100"
},
{ NULL, NULL, NULL, NULL, NULL, NULL, {{0}}, NULL },