[Scummvm-git-logs] scummvm master -> 6819bf1ee0738dab863efc8dc7c114b8b16eabc7

mikrosk noreply at scummvm.org
Wed Apr 1 12:32:25 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:
6819bf1ee0 BACKENDS: ATARI: quit() should actually quit the application


Commit: 6819bf1ee0738dab863efc8dc7c114b8b16eabc7
    https://github.com/scummvm/scummvm/commit/6819bf1ee0738dab863efc8dc7c114b8b16eabc7
Author: Miro Kropacek (miro.kropacek at gmail.com)
Date: 2026-04-01T22:31:52+10:00

Commit Message:
BACKENDS: ATARI: quit() should actually quit the application

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 d9e36e61678..f52a842aaa3 100644
--- a/backends/platform/atari/osystem_atari.cpp
+++ b/backends/platform/atari/osystem_atari.cpp
@@ -405,12 +405,15 @@ void OSystem_Atari::quit() {
 
 	if (!s_dtor_already_called)
 		destroy();
+
+	exit(0);
 }
 
 void OSystem_Atari::fatalError() {
 	atari_debug("OSystem_Atari::fatalError()");
 
-	quit();
+	if (!s_dtor_already_called)
+		destroy();
 
 	// let exit_restore() and critical_restore() handle the recovery
 	exit(1);




More information about the Scummvm-git-logs mailing list