Skip to content

Commit

Permalink
assign wswan and gearcoleco core options
Browse files Browse the repository at this point in the history
  • Loading branch information
n-at committed Aug 31, 2023
1 parent e5aaab3 commit 2b18c06
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions storage/core_options.go
Original file line number Diff line number Diff line change
Expand Up @@ -681,9 +681,6 @@ var CoreOptionsYabause = []CoreOption{
},
}

// CoreOptionsPPSSPP https://docs.libretro.com/library/ppsspp/ TODO
var CoreOptionsPPSSPP = []CoreOption{}

// CoreOptionsParallelN64 (extracted from emulator)
var CoreOptionsParallelN64 = []CoreOption{
{Id: "parallel-n64-cpucore", Name: "parallel-n64-cpucore", Variants: "cached_interpreter|pure_interpreter", Default: "cached_interpreter"},
Expand Down Expand Up @@ -803,6 +800,10 @@ func CoreOptionsByCore(core string) []CoreOption {
return CoreOptionsBeetlePCFX
case "mednafen_ngp":
return CoreOptionsBeetleNGP
case "mednafen_wswan":
return CoreOptionsBeetleWSwan
case "gearcoleco":
return CoreOptionsGearcoleco
}
return []CoreOption{}
}
Expand Down

0 comments on commit 2b18c06

Please sign in to comment.