Display More
Been playing around with GameStarter on a RPi and trying to get the Arcade Overlay Bezels for Mame2003 to work.Most of the tutorials are for a RetroPie default installation.
What I found was I needed to modify the game.zip.cfg files to point to where I installed that Overlays and Shaders.
But, more importantly, I had to update gamestarter.start to call in the additional game.zip.cfg file.
I modified line 96:
from: $DIR/resources/bin/retroarch -c $CONFIG_FILE -L $LIBRETRO_DIR/$1_libretro.so "$2" &> $LOG_FILE_RA
to: $DIR/resources/bin/retroarch -c $CONFIG_FILE --appendconfig "$2.cfg" -L $LIBRETRO_DIR/$1_libretro.so "$2" &> $LOG_FILE_RAI also updated RetroArch config so that the config file is not saved on RetroArch exit.
This works for me, and loads the additional config file to add in the shader and overlay info.
I'd like to know if this modification is really necessary - or have I missed something?
Cheers.
Nice walkaround! don't worry, if it is working for you, it is ok!