comparison 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
comparison
equal deleted inserted replaced
305:3900f3cfe07d 306:057c5114e244
19 /* 19 /*
20 * chg_hpt: 20 * chg_hpt:
21 * Changes players hit points 21 * Changes players hit points
22 */ 22 */
23 void 23 void
24 chg_hpt(int howmany, bool alsomax, char what) 24 chg_hpt(int howmany, bool alsomax, unsigned char what)
25 { 25 {
26 nochange = FALSE; 26 nochange = FALSE;
27 if(alsomax) 27 if(alsomax)
28 him->s_maxhp += howmany; 28 him->s_maxhp += howmany;
29 him->s_hpt += howmany; 29 him->s_hpt += howmany;