diff srogue/pstats.c @ 306:057c5114e244

Super-Rogue: fix some out-of-range constants. Constants K_ARROW etc., for causes of death other than monsters, are in the 240-255 range. They were often passed to functions taking char, which is usually signed, making the values out of range. The function declarations have been changed to unsigned char, which is also the type used by the scoreboard code.
author John "Elwin" Edwards
date Sat, 17 Apr 2021 15:41:12 -0400
parents e7862a021609
children
line wrap: on
line diff
--- a/srogue/pstats.c	Thu Apr 15 20:55:34 2021 -0400
+++ b/srogue/pstats.c	Sat Apr 17 15:41:12 2021 -0400
@@ -21,7 +21,7 @@
  *	Changes players hit points
  */
 void
-chg_hpt(int howmany, bool alsomax, char what)
+chg_hpt(int howmany, bool alsomax, unsigned char what)
 {
 	nochange = FALSE;
 	if(alsomax)