FunKey-OS/FunKey/board/funkey/rootfs-overlay/usr/games/launchers/mame_launch_mednafen.sh

11 lines
312 B
Bash
Executable File

#!/bin/sh
cp /usr/games/mednafen-09x.cfg ${MEDNAFEN_HOME}/
# Launch the process in background, record the PID into a file, wait
# for the process to terminate and erase the recorded PID
mednafen -sound 1 -soundrate 22050 -soundbufsize 100 -vdriver sdl -frameskip 1 -fs 0 "$1"&
pid record $!
wait $!
pid erase