I added a small wrapper around the Selector menu that was distributed with the RACE emulator.
#!/bin/sh
rc=0
while [ $rc -ne 139 ]
do
./selector ./race_config
rc=$?
sync
done
cd /usr/gp2x/
exec /usr/gp2x/gp2xmenu
Does anyone know if that would cause a memory leak? I have tried it successfully with 4-5 games in succession. It seems to be OK.
#!/bin/sh
rc=0
while [ $rc -ne 139 ]
do
./selector ./race_config
rc=$?
sync
done
cd /usr/gp2x/
exec /usr/gp2x/gp2xmenu
Does anyone know if that would cause a memory leak? I have tried it successfully with 4-5 games in succession. It seems to be OK.