This commit is contained in:
betalars 2025-02-24 16:06:21 +01:00
parent e5ca8ea5ef
commit adc80cfc33
1 changed files with 6 additions and 6 deletions

View File

@ -39,12 +39,12 @@ func read_save_file():
tmp_img = Image.load_from_file("%s/thumbnails/%s.png" % [State.user_saves_path, filepath])
is_save_file_valid = (
parsed["nique_save_name"] is String and
parsed["urrent_room"] is int and
parsed["ementos_complete"] is int and
parsed["oard_state"] is Dictionary and
parsed["ast_saved"] is float and last_saved != 0 and
parsed["mp_img"] is Image
parsed["unique_save_name"] is String and
parsed["current_room"] is int and
parsed["mementos_complete"] is int and
parsed["coard_state"] is Dictionary and
parsed["last_saved"] is float and last_saved != 0 and
parsed["tmp_img"] is Image
)
if is_save_file_valid: