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: d7b6c6c41a41ca20b04246515fe53a7440f75859 (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