From fc601639494e089702a1ada082eb51aaafc03722 Mon Sep 17 00:00:00 2001 From: ozkl Date: Sun, 24 Aug 2025 09:34:52 +0300 Subject: [PATCH] I_Error exits instead of infinite loop --- doomgeneric/i_system.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/doomgeneric/i_system.c b/doomgeneric/i_system.c index 65ab39d..53ab2c9 100644 --- a/doomgeneric/i_system.c +++ b/doomgeneric/i_system.c @@ -466,9 +466,7 @@ void I_Error (char *error, ...) exit(-1); #else - while (true) - { - } + exit(-1); #endif } -- 2.54.0