be more consistent with coordxy in mkmap.c

Also closes #1365
This commit is contained in:
nhmall
2025-01-14 10:32:36 -05:00
parent f32e32d447
commit 2354fef2d6
3 changed files with 76 additions and 78 deletions

View File

@@ -619,10 +619,10 @@ struct instance_globals_m {
boolean made_branch; /* used only during level creation */
/* mkmap.c */
int min_rx; /* rectangle bounds for regions */
int max_rx;
int min_ry;
int max_ry;
coordxy min_rx; /* rectangle bounds for regions */
coordxy max_rx;
coordxy min_ry;
coordxy max_ry;
/* mkobj.c */
boolean mkcorpstat_norevive; /* for trolls */

View File

@@ -1547,8 +1547,8 @@ extern void mineralize(int, int, int, int, boolean);
/* ### mkmap.c ### */
extern void flood_fill_rm(int, int, int, boolean, boolean);
extern void remove_rooms(int, int, int, int);
extern void flood_fill_rm(coordxy, coordxy, int, boolean, boolean);
extern void remove_rooms(coordxy, coordxy, coordxy, coordxy);
extern boolean litstate_rnd(int);
/* ### mkmaze.c ### */