mirror of
https://github.com/libretro/RetroArch
synced 2025-02-07 03:40:24 +00:00
17 lines
274 B
Bash
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
|