Skip to content

Commit

Permalink
sega32x and picodrive removed
Browse files Browse the repository at this point in the history
  • Loading branch information
n-at committed Aug 29, 2023
1 parent 4b38ce0 commit 4527f30
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 94 deletions.
62 changes: 0 additions & 62 deletions storage/core_options.go
Original file line number Diff line number Diff line change
Expand Up @@ -601,66 +601,6 @@ var CoreOptionsPCSXRearmed = []CoreOption{
{Id: "pcsx_rearmed_gunconadjustratioy", Name: "pcsx_rearmed_gunconadjustratioy", Variants: "0.75|0.76|0.77|0.78|0.79|0.80|0.81|0.82|0.83|0.84|0.85|0.86|0.87|0.88|0.89|0.90|0.91|0.92|0.93|0.94|0.95|0.96|0.97|0.98|0.99|1.00|1.01|1.02|1.03|1.04|1.05|1.06|1.07|1.08|1.09|1.10|1.11|1.12|1.13|1.14|1.15|1.16|1.17|1.18|1.19|1.20|1.21|1.22|1.23|1.24|1.25", Default: "1.00"},
}

// CoreOptionsPicoDrive https://docs.libretro.com/library/picodrive/
var CoreOptionsPicoDrive = []CoreOption{
{
Id: "picodrive_input1",
Name: "Input device 1",
Variants: "3 button pad|6 button pad|None",
Default: "3 button pad",
}, {
Id: "picodrive_input2",
Name: "Input device 2",
Variants: "3 button pad|6 button pad|None",
Default: "3 button pad",
}, {
Id: "picodrive_sprlim",
Name: "No sprite limit",
Variants: "disabled|enabled",
Default: "disabled",
}, {
Id: "picodrive_ramcart",
Name: "MegaCD RAM cart",
Variants: "disabled|enabled",
Default: "disabled",
}, {
Id: "picodrive_region",
Name: "Region",
Variants: "Auto|Japan NTSC|Japan PAL|US|Europe",
Default: "Auto",
}, {
Id: "picodrive_aspect",
Name: "Core-provided aspect ratio",
Variants: "PAR|4|3|CRT",
Default: "PAR",
}, {
Id: "picodrive_overscan",
Name: "Show Overscan",
Variants: "disabled|enabled",
Default: "disabled",
}, {
Id: "picodrive_overclk68k",
Name: "68k overclock",
Variants: "disabled|+25%|+50%|+75%|+100%|+200%|+400%",
Default: "disabled",
}, {
Id: "picodrive_drc",
Name: "Dynamic recompilers",
Variants: "enabled|disabled",
Default: "enabled",
}, {
Id: "picodrive_audio_filter",
Name: "Audio filter",
Variants: "disabled|low-pass",
Default: "disabled",
}, {
Id: "picodrive_lowpass_range",
Name: "Low-pass filter %",
Variants: "60|65|70|75|80|85|90|95|5|10|15|20|25|30|35|40|45|50|55",
Default: "60",
},
}

// CoreOptionsProSystem https://docs.libretro.com/library/prosystem/
var CoreOptionsProSystem = []CoreOption{}

Expand Down Expand Up @@ -810,8 +750,6 @@ func CoreOptionsByCore(core string) []CoreOption {
return CoreOptionsYabause
case "genesis_plus_gx":
return CoreOptionsGenesisPlusGX
case "picodrive":
return CoreOptionsPicoDrive
case "mupen64plus_next":
return CoreOptionsMupen64Plus
case "opera":
Expand Down
36 changes: 4 additions & 32 deletions storage/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ var (
"segaMD",
"segaGG",
"segaCD",
//"sega32x",
"segaSaturn",
"psx",
"3do",
Expand Down Expand Up @@ -177,11 +176,6 @@ var (
Name: "Sega CD",
Extensions: []string{},
},
//"sega32x": {
// Id: "sega32x",
// Name: "Sega 32X",
// Extensions: []string{"32x"},
//},
"n64": {
Id: "n64",
Name: "Nintendo 64",
Expand Down Expand Up @@ -227,11 +221,10 @@ var (
"segaMD": {"genesis_plus_gx"},
"segaGG": {"genesis_plus_gx"},
"segaCD": {"genesis_plus_gx"},
//"sega32x": {"picodrive"},
"n64": {"parallel_n64", "mupen64plus_next"},
"3do": {"opera"},
"atari7800": {"prosystem"},
"atari2600": {"stella2014"},
"n64": {"parallel_n64", "mupen64plus_next"},
"3do": {"opera"},
"atari7800": {"prosystem"},
"atari2600": {"stella2014"},
}

Bioses = map[string][]Bios{
Expand Down Expand Up @@ -456,7 +449,6 @@ var (
Description: "MegaCD JP BIOS",
},
},
//"sega32x": {},
"n64": {},
"3do": {
Bios{
Expand Down Expand Up @@ -1143,26 +1135,6 @@ func DefaultEmulatorSettings(systemType string) EmulatorSettings {
},
}

//case "sega32x":
// return EmulatorSettings{
// Core: Cores["sega32x"][0],
// Bios: "",
// ColorScheme: DefaultColorScheme,
// ColorBackground: DefaultColorBackground,
// CacheLimit: DefaultCacheLimit,
// Volume: DefaultVolume,
// FastForwardRatio: DefaultFastForwardRatio,
// SlowMotionRatio: DefaultSlowMotionRatio,
// RewindGranularity: DefaultRewindGranularity,
// Shader: Shaders[0].Value,
// Buttons: DefaultButtons,
// Controls: [4]EmulatorControls{
// {
// Keyboard: DefaultControlsSegaMD,
// },
// },
// }

case "n64":
return EmulatorSettings{
Core: Cores["n64"][0],
Expand Down

0 comments on commit 4527f30

Please sign in to comment.