RetroArch/hakchi/bin/retroarch-clover
2018-07-27 19:26:15 +02:00

17 lines
274 B
Bash

#!/bin/sh
source /etc/preinit
script_init
uistop
core="$1"
rom="$2"
shift 2
if [ -f "/bin/remote-exec" ]; then
echo retroarch-clover-child "$core" "\"$rom\"" ${1+"$@"} > /var/exec.flag
else
exec retroarch-clover-child "$core" "\"$rom\"" ${1+"$@"}
fi