Welcome to mirror list, hosted at ThFree Co, Russian Federation.

retroarch-mini « bin « retroarch.hmod - github.com/ClusterM/retroarch-clover.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5fa48d32063ab31043fdf8ea4acae10df8f75344 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
export HOME=/etc/libretro
if [ "$1" == "null" ]; then
  exec retroarch -c "$HOME/retroarch.cfg" -vf
else
  core=$HOME/core/$1_libretro.so
  shift
  exec retroarch -c "$HOME/retroarch.cfg" -vfL "$core" ${1+"$@"}
fi