ports/doom: Fix patch calling exit() to actually do what it says
This commit is contained in:
parent
04f49a6819
commit
9c2fcd745c
|
@ -1,14 +1,14 @@
|
|||
From eafb5f1d01e3edd3035fc405de808b1a2e2151d2 Mon Sep 17 00:00:00 2001
|
||||
From c28fd460c15a3d4cc5aac35d1ea5744f1722cab4 Mon Sep 17 00:00:00 2001
|
||||
From: Bananymous <bananymousosq@gmail.com>
|
||||
Date: Wed, 3 Apr 2024 21:39:22 +0300
|
||||
Subject: [PATCH] Call exit() on I_Error()
|
||||
Subject: [PATCH] Call exit() on I_Quit() and I_Error()
|
||||
|
||||
---
|
||||
doomgeneric/i_system.c | 4 ++++
|
||||
1 file changed, 4 insertions(+)
|
||||
|
||||
diff --git a/doomgeneric/i_system.c b/doomgeneric/i_system.c
|
||||
index 5d00091..b71aa23 100644
|
||||
index 5d00091..bfb204f 100644
|
||||
--- a/doomgeneric/i_system.c
|
||||
+++ b/doomgeneric/i_system.c
|
||||
@@ -257,6 +257,8 @@ void I_Quit (void)
|
||||
|
@ -20,6 +20,15 @@ index 5d00091..b71aa23 100644
|
|||
#if ORIGCODE
|
||||
SDL_Quit();
|
||||
|
||||
--
|
||||
2.44.0
|
||||
@@ -403,6 +405,8 @@ void I_Error (char *error, ...)
|
||||
entry = entry->next;
|
||||
}
|
||||
|
||||
+ exit(1);
|
||||
+
|
||||
exit_gui_popup = !M_ParmExists("-nogui");
|
||||
|
||||
// Pop up a GUI dialog box to show the error message, if the
|
||||
--
|
||||
2.47.1
|
||||
|
Loading…
Reference in New Issue