Mercurial > hg > early-roguelike
comparison arogue5/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 | 56e748983fa8 |
children |
comparison
equal
deleted
inserted
replaced
303:e06ebc407615 | 304:e52a8a7ad4c5 |
---|---|
137 | 137 |
138 void | 138 void |
139 conn(int r1, int r2) | 139 conn(int r1, int r2) |
140 { | 140 { |
141 register struct room *rpf, *rpt = NULL; | 141 register struct room *rpf, *rpt = NULL; |
142 register char rmt; | 142 register signed char rmt; |
143 register int distance = 0, turn_spot = 0, turn_distance = 0; | 143 register int distance = 0, turn_spot = 0, turn_distance = 0; |
144 register int rm; | 144 register int rm; |
145 register char direc; | 145 register char direc; |
146 coord delta = { 0, 0 }, curr, turn_delta = { 0, 0 }, spos = { 0, 0 }, epos = { 0, 0 }; | 146 coord delta = { 0, 0 }, curr, turn_delta = { 0, 0 }, spos = { 0, 0 }, epos = { 0, 0 }; |
147 | 147 |