Hi, the file you posted is different from the one in the distribution. It should look like this - of course this only works if you didn't change the directory layout on your device as compared to the layout contained in the tar.gz archive:
Code:
#!/bin/sh
EXTENSION=/mnt/us/extensions/gargoyle
cd ${EXTENSION}
lipc-set-prop -s com.lab126.keyboard open net.fabiszewski.gargoyle:abc:0
SAVED_GAMES=${EXTENSION}/saved_games/ \
#SAVED_GAMES=/mnt/us/Dropbox/Saves/ \
GAMES=${EXTENSION}/games/ \
LD_LIBRARY_PATH=${EXTENSION}/dist \
PATH=$PATH:${EXTENSION}/dist \
./dist/gargoyle
lipc-set-prop -s com.lab126.keyboard close net.fabiszewski.gargoyle
The path to the save-game folder ist specified in this line:
SAVED_GAMES=${EXTENSION}/saved_games/ \
This means savegames are expected in this directory:
/mnt/us/extensions/gargoyle/saved_games/
The directory must exist, the path name is case sensitive.
You can change this to wherever your savegames are located, like:
SAVED_GAMES=/mnt/us/mySpecialSavegameFolder/ \