Hello Guys!
I checked the code for you and made a workaround.
Open
savetoken.py from the renpy folder. Search for
def verify_data
Python:
def verify_data(data, signatures, check_verifying=True):
"""
Verifies that `data` has been signed by the keys in `signatures`.
"""
for i in signatures.splitlines():
kind, key, sig = decode_line(i)
if kind == "signature":
if key is None:
continue
if check_verifying and key not in verifying_keys:
continue
try:
vk = ecdsa.VerifyingKey.from_der(key)
if vk.verify(sig, data):
return True
except Exception:
continue
return False #You have to change this to True
In this method the program is verify the save file. You need to change the return in the end of the code.
Set it True and save the file and restart the game.
Now you can load any save file.