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

nes « bin « retroarch.hmod - github.com/ClusterM/retroarch-clover.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ae66cfbae829303e210601d695c490f1f141aac5 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
core=fceumm
filename="$1"
extension="${filename##*.}"
crt=--ra-allow-crt
if [ "$extension" == "fds" ] || [ "$extension" == "qd" ]; then
  core=nestopia
  crt=0
fi

exec retroarch-clover "$core" "$@" $crt