diff xrogue/rogue.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 aac28331e71d
children 827441d05b3e
line wrap: on
line diff
--- a/xrogue/rogue.c	Sun Feb 11 15:37:33 2018 -0500
+++ b/xrogue/rogue.c	Fri Nov 22 21:18:27 2019 -0500
@@ -166,7 +166,8 @@
  */
 
 struct words abilities[NUMABILITIES] = {
-  "Intelligence", "Strength", "Wisdom", "Dexterity", "Constitution", "Charisma"
+  { "Intelligence" }, { "Strength" }, { "Wisdom" },
+  { "Dexterity" }, { "Constitution" }, { "Charisma" }
 };
 
 /*