Mercurial > hg > early-roguelike
comparison arogue7/passages.c @ 304:e52a8a7ad4c5
Fix many compiler warnings.
There should only be two changes in behavior:
arogue7/fight.c, arogue7/fight.c: a to-hit bonus is now correctly
applied to characters who are not monks instead of monks who are not
empty-handed.
urogue/fight.c: fixed an interaction with the "debug" macro that could
cause the wrong message to be displayed.
author | John "Elwin" Edwards |
---|---|
date | Wed, 14 Apr 2021 18:55:33 -0400 |
parents | f9ef86cf22b2 |
children | 13b482bd9e66 |
comparison
equal
deleted
inserted
replaced
303:e06ebc407615 | 304:e52a8a7ad4c5 |
---|---|
141 | 141 |
142 void | 142 void |
143 conn(int r1, int r2) | 143 conn(int r1, int r2) |
144 { | 144 { |
145 register struct room *rpf, *rpt = NULL; | 145 register struct room *rpf, *rpt = NULL; |
146 register char rmt; | 146 register signed char rmt; |
147 register int distance, max_diag, offset, i; | 147 register int distance, max_diag, offset, i; |
148 register int rm; | 148 register int rm; |
149 int turns[3], turn_dist[3]; | 149 int turns[3], turn_dist[3]; |
150 register char direc; | 150 register char direc; |
151 coord delta, curr, turn_delta, spos, epos; | 151 coord delta, curr, turn_delta, spos, epos; |