added psx processing
This commit is contained in:
parent
939329346d
commit
2747d385e9
|
@ -1 +1,3 @@
|
|||
This is just a quick bash script I wrote to generate Lakka playlists from my ROM directories. Only supports specific systems that I care about, but could easily be extended to support more. May need some customization depending on your core preferences.
|
||||
|
||||
It supports MAME 2003 Plus rom naming based on the included json database.
|
||||
|
|
|
@ -88,6 +88,12 @@ case "$sys_type" in
|
|||
core_name="Sega - MS/GG/MD/CD (Genesis Plus GX)"
|
||||
db_name="Sega - Mega Drive - Genesis.lpl"
|
||||
;;
|
||||
'psx')
|
||||
rom_ext="cue"
|
||||
core_path="/tmp/cores/pcsx_rearmed_libretro.so"
|
||||
core_name="Sony - PlayStation (PCSX ReARMed)"
|
||||
db_name="Sony - PlayStation.lpl"
|
||||
;;
|
||||
*)
|
||||
echo "Don't recognize system for roms in $sys_type directory..."
|
||||
exit 1
|
||||
|
|
Loading…
Reference in New Issue