JeodC / PortMaster-HoloCure

A port of Holocure for retro handhelds.
2 stars 0 forks source link

HoloCure.sh does not rename data.win and so patching fails as it expects game.droid #1

Closed hilly1 closed 9 hours ago

hilly1 commented 13 hours ago

adding the following lines before patching fixes it (lines taken from the old port on discord):

# Check for file existence before trying to manipulate them:
[ -f "./gamedata/data.win" ] && mv gamedata/data.win gamedata/game.droid
[ -f "./gamedata/game.win" ] && mv gamedata/game.win gamedata/game.droid
[ -f "./gamedata/game.unx" ] && mv gamedata/game.unx gamedata/game.droid
JeodC commented 9 hours ago

Fixed, thanks.