hotfix: disable saving to prevent crashes

This commit is contained in:
betalars 2025-05-26 18:29:25 +02:00
parent 5755b65545
commit e46f407f41
1 changed files with 2 additions and 0 deletions

View File

@ -130,6 +130,8 @@ func _get_save_dict() -> Dictionary:
}
func save_to_file(current_screen: Texture):
# FIXME
if OS.has_feature("Demo") or OS.has_feature("Debug"): return
last_saved = Time.get_unix_time_from_system()
var thumbnail_image: Image = current_screen.get_image()