mirror of
https://github.com/libretro/RetroArch
synced 2025-02-07 12:39:54 +00:00
17 lines
274 B
Plaintext
17 lines
274 B
Plaintext
|
#!/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
|