Update SNES core

This commit is contained in:
giongto35 2019-08-31 04:13:09 +08:00
parent dadd5ebad0
commit 31546ccd59
2 changed files with 8 additions and 3 deletions

View file

@ -30,4 +30,9 @@ var FileTypeToEmulator = map[string]string{
"cue": "pcsx",
"zip": "mame",
"nes": "nes",
"smc": "snes",
"sfc": "snes",
"swc": "snes",
"fig": "snes",
"bs": "snes",
}

View file

@ -66,10 +66,10 @@ var NAEmulator *naEmulator
// TODO: Load from config
var emulatorCorePath = map[string]string{
"gba": "libretro/cores/mgba_libretro.so",
"pcsx": "libretro/cores/mednafen_psx_libretro.so",
//"pcsx": "libretro/cores/mednafen_psx_hw_libretro.so",
"gba": "libretro/cores/mgba_libretro.so",
"pcsx": "libretro/cores/mednafen_psx_libretro.so",
"arcade": "libretro/cores/fbalpha2012_neogeo_libretro.so",
"snes": "libretro/cores/mednafen_snes_libretro.so",
"mame": "libretro/cores/mame2016_libretro.so",
}