[Scummvm-git-logs] scummvm master -> 0d01736e290ddf5dc66a2a87c6612373620909ad

mikrosk noreply at scummvm.org
Fri May 1 12:02:50 UTC 2026


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .

Summary:
0d01736e29 BACKENDS: ATARI: Disable autosave by default


Commit: 0d01736e290ddf5dc66a2a87c6612373620909ad
    https://github.com/scummvm/scummvm/commit/0d01736e290ddf5dc66a2a87c6612373620909ad
Author: Miro Kropacek (miro.kropacek at gmail.com)
Date: 2026-05-01T22:02:29+10:00

Commit Message:
BACKENDS: ATARI: Disable autosave by default

Changed paths:
    backends/platform/atari/osystem_atari.cpp


diff --git a/backends/platform/atari/osystem_atari.cpp b/backends/platform/atari/osystem_atari.cpp
index b2ec8429151..c3ff8ec2bc8 100644
--- a/backends/platform/atari/osystem_atari.cpp
+++ b/backends/platform/atari/osystem_atari.cpp
@@ -350,6 +350,11 @@ void OSystem_Atari::initBackend() {
 		ConfMan.set("mt32_device", "auto");
 	}
 #endif
+	// This produces hard pause even in most optimised engines
+	// and even on CT60...
+	if (!ConfMan.hasKey("autosave_period")) {
+		ConfMan.setInt("autosave_period", 0);
+	}
 
 	_mixerManager = new AtariMixerManager();
 	// Setup and start mixer




More information about the Scummvm-git-logs mailing list