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

retroarch-clover « bin « retroarch.hmod - github.com/ClusterM/retroarch-clover.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a00c6a728dc050872cce52024d5e1dca86cd3a5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

# Kill it! Kill it with fire!
pkill -KILL clover-mcp

core=$1
rom=$2
shift 2

if [ -f "/bin/remote-exec" ]; then
  echo retroarch-clover-child "$core" "$rom" $@ > /var/exec.flag
else
  exec retroarch-clover-child "$core" "$rom" $@
fi