[Scummvm-git-logs] scummvm master -> e8f009e04f875b3ed75356068749a4f1b4d1fd55

bluegr bluegr at gmail.com
Tue Sep 10 12:02:32 CEST 2019


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

Summary:
e8f009e04f IOS: Call exit(0) when exiting to prevent hanging


Commit: e8f009e04f875b3ed75356068749a4f1b4d1fd55
    https://github.com/scummvm/scummvm/commit/e8f009e04f875b3ed75356068749a4f1b4d1fd55
Author: sluicebox (22204938+sluicebox at users.noreply.github.com)
Date: 2019-09-10T13:02:28+03:00

Commit Message:
IOS: Call exit(0) when exiting to prevent hanging

Prevents the process from hanging on exit when using the
Quit button in launcher or a game's quit function

Changed paths:
    backends/platform/ios7/ios7_osys_main.cpp


diff --git a/backends/platform/ios7/ios7_osys_main.cpp b/backends/platform/ios7/ios7_osys_main.cpp
index 07af311..636d603 100644
--- a/backends/platform/ios7/ios7_osys_main.cpp
+++ b/backends/platform/ios7/ios7_osys_main.cpp
@@ -414,4 +414,7 @@ void iOS7_main(int argc, char **argv) {
 		//*stderr = NULL;
 		fclose(newfp);
 	}
+
+	// prevents hanging on exit
+	exit(0);
 }





More information about the Scummvm-git-logs mailing list