home · contact · privacy
Added new class of errors to windows library to ensure yx_uint16-compatible maximum...
[plomrogue] / src / rexit.c
index 802de341f44c98e09e61c6eab8510a2830b51eb4..31cf3ee724c47b5d0b2184484cae0c180de831a5 100644 (file)
@@ -5,11 +5,13 @@
 #include <stdio.h> /* for printf(), perror() */
 #include <stdint.h> /* for uint8_t */
 #include <ncurses.h> /* for endwin() */
+#include <errno.h> /* for errno */
 #include "main.h" /* for World struct */
 #include "map.h" /* for Map struct */
 #include "keybindings.h" /* for KeysWinData, KeyBinding structs */
 
 
+
 /* The clean-up routine and the flag resource by which it decides what to do. */
 static uint8_t cleanup_flags = 0x00;
 static void cleanup(struct World * world);
@@ -68,9 +70,12 @@ extern void exit_err(uint8_t err, struct World * world, char * msg)
     cleanup(world);
     if (NULL == msg)
     {
-        msg = "Some error encountered. Aborted.";
+        msg = "Details unknown.";
+    }
+    printf("Aborted PlomRogue due to error. %s\n", msg);
+    if (0 != errno)
+    {
+        perror("errno states");
     }
-    printf("%s\n", msg);
-    perror("errno states");
     exit(EXIT_FAILURE);
 }