diff xrogue/maze.c @ 300:0250220d8cdd

Fix an assortment of compiler warnings. A few potential bugs were removed in the process. Much code cleanup remains to be done.
author John "Elwin" Edwards
date Fri, 22 Nov 2019 21:18:27 -0500
parents f54901b9c39b
children
line wrap: on
line diff
--- a/xrogue/maze.c	Sun Feb 11 15:37:33 2018 -0500
+++ b/xrogue/maze.c	Fri Nov 22 21:18:27 2019 -0500
@@ -21,7 +21,7 @@
         char x_pos;
 };
 struct b_cellscells {
-        char num_pos;           /* number of frontier cells next to you */
+        unsigned char num_pos;  /* number of frontier cells next to you */
         struct cell conn[4];    /* the y,x position of above cell */
 } b_cells;