From: Turo Lamminen Date: Tue, 23 Apr 2024 17:23:03 +0000 (+0300) Subject: Add DJGPP-specific path to I_Error X-Git-Url: https://git.0x19.co/screenshots/freebsd.png?a=commitdiff_plain;h=ff3f677ff9253f0a8b673fd933812ffc139229e1;p=doomgeneric-snom360 Add DJGPP-specific path to I_Error --- diff --git a/doomgeneric/i_system.c b/doomgeneric/i_system.c index 5d00091..9677978 100644 --- a/doomgeneric/i_system.c +++ b/doomgeneric/i_system.c @@ -448,6 +448,12 @@ void I_Error (char *error, ...) message, NULL); } +#elif defined(__DJGPP__) + { + printf("%s\n", msgbuf); + exit(-1); + } + #else { ZenityErrorBox(msgbuf);