From: ozkl Date: Sun, 24 Aug 2025 06:34:52 +0000 (+0300) Subject: I_Error exits instead of infinite loop X-Git-Url: https://git.0x19.co/sitemap.xml?a=commitdiff_plain;h=fc601639494e089702a1ada082eb51aaafc03722;p=doomgeneric-snom360 I_Error exits instead of infinite loop --- 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 }