- May 22, 2017
- 3,102
- 7,555
It's not just a Mac problem, but also the PC version saves did not transfer from the protoype 0.1 version to the new one.Mmmh MAC I don't know much about them. I did fix the build's name from its prototype name "Full spectrum" in 0.1. Maybe...
The reason is most likely that you changed the name from
define config.name = _("Full Spectrum")
to define config.name = _("Red Lucy")
which seems to automatically generate a new name for the global save folder, since it has been changed from define config.save_directory = "FullSpectrum-1654387188"
to define config.save_directory = "RedLucy-1654387188"
.The problem with the saves could have been avoided by changing the save folder name back to what it was after starting the game in the Ren'Py SDK environment at least once, so that the new config.name gets detected and new save folder name generated.
All the variables mentioned are defined in the options.rpy file.
Changing the save folder name back to what it was in the prototype version now would probably be a bad idea.
Last edited: