typo fix
This commit is contained in:
parent
e5ca8ea5ef
commit
adc80cfc33
|
|
@ -39,12 +39,12 @@ func read_save_file():
|
||||||
tmp_img = Image.load_from_file("%s/thumbnails/%s.png" % [State.user_saves_path, filepath])
|
tmp_img = Image.load_from_file("%s/thumbnails/%s.png" % [State.user_saves_path, filepath])
|
||||||
|
|
||||||
is_save_file_valid = (
|
is_save_file_valid = (
|
||||||
parsed["nique_save_name"] is String and
|
parsed["unique_save_name"] is String and
|
||||||
parsed["urrent_room"] is int and
|
parsed["current_room"] is int and
|
||||||
parsed["ementos_complete"] is int and
|
parsed["mementos_complete"] is int and
|
||||||
parsed["oard_state"] is Dictionary and
|
parsed["coard_state"] is Dictionary and
|
||||||
parsed["ast_saved"] is float and last_saved != 0 and
|
parsed["last_saved"] is float and last_saved != 0 and
|
||||||
parsed["mp_img"] is Image
|
parsed["tmp_img"] is Image
|
||||||
)
|
)
|
||||||
|
|
||||||
if is_save_file_valid:
|
if is_save_file_valid:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue