Add DJGPP-specific path to I_Error

This commit is contained in:
Turo Lamminen
2024-04-23 20:23:03 +03:00
parent dc8e70d85a
commit ff3f677ff9
+6
View File
@@ -448,6 +448,12 @@ void I_Error (char *error, ...)
message,
NULL);
}
#elif defined(__DJGPP__)
{
printf("%s\n", msgbuf);
exit(-1);
}
#else
{
ZenityErrorBox(msgbuf);