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: 2ab8a98f5efced64fcf40775914636217acaec3a (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
core=fceumm
filename="$1"
extension="${filename##*.}"

if [ "$extension" == "fds" ] || [ "$extension" == "qd" ]; then
  core=nestopia
fi

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