fixed logging fatal errors
authorHolger Schemel <info@artsoft.org>
Fri, 17 Oct 2014 22:16:20 +0000 (00:16 +0200)
committerHolger Schemel <info@artsoft.org>
Fri, 17 Oct 2014 22:16:20 +0000 (00:16 +0200)
src/conftime.h
src/init.c
src/libgame/misc.c

index a3077953a829734dd1db6b425fdd94b6baf56663..ed346741b1143bfa08f1a6ca2f5ff7946d62109b 100644 (file)
@@ -1 +1 @@
-#define COMPILE_DATE_STRING "2014-10-17 19:07"
+#define COMPILE_DATE_STRING "2014-10-18 00:15"
index 5cd9f8d59e8b2ea63c28d1b90e2edf4d591ac6c0..39f5c347156d682106bfe79d0f6da337eaea99b5 100644 (file)
@@ -1315,7 +1315,7 @@ static void set_cloned_graphic_parameters(int graphic)
     Error(ERR_INFO, "custom graphic rejected for this element/action");
 
     if (graphic == fallback_graphic)
-      Error(ERR_EXIT, "fatal error: no fallback graphic available");
+      Error(ERR_EXIT, "no fallback graphic available");
 
     Error(ERR_INFO, "fallback done to 'char_exclam' for this graphic");
     Error(ERR_INFO_LINE, "-");
@@ -1461,7 +1461,7 @@ static void InitGraphicInfo()
       Error(ERR_INFO, "custom graphic rejected for this element/action");
 
       if (i == fallback_graphic)
-       Error(ERR_EXIT, "fatal error: no fallback graphic available");
+       Error(ERR_EXIT, "no fallback graphic available");
 
       Error(ERR_INFO, "fallback done to 'char_exclam' for this graphic");
       Error(ERR_INFO_LINE, "-");
@@ -1490,7 +1490,7 @@ static void InitGraphicInfo()
       Error(ERR_INFO, "custom graphic rejected for this element/action");
 
       if (i == fallback_graphic)
-       Error(ERR_EXIT, "fatal error: no fallback graphic available");
+       Error(ERR_EXIT, "no fallback graphic available");
 
       Error(ERR_INFO, "fallback done to 'char_exclam' for this graphic");
       Error(ERR_INFO_LINE, "-");
index 31adce34c6a1eec5f5ace6f68870628128e45b20..eb2f8f0c54476a281939448b3a9bdfe5aba8e984 100644 (file)
@@ -1005,6 +1005,9 @@ void Error(int mode, char *format, ...)
     if (mode & ERR_WARN)
       fprintf_nonewline(program.error_file, "warning: ");
 
+    if (mode & ERR_EXIT)
+      fprintf_nonewline(program.error_file, "fatal error: ");
+
     va_start(ap, format);
     vfprintf_newline(program.error_file, format, ap);
     va_end(ap);