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: 7d166debd2d40f03af402c8b815e8dada2f6fbda (plain)
1
2
3
4
5
6
7
8
9
10
#!/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
  args ${1+"$@"}
  exec retroarch -c "$HOME/retroarch.cfg" -vfL "$core" ${1+"$@"}
fi