(draw_map): Parameter bmap abused EF_MAP and EF_BMAP, and required the

silly EF_NMAP.  Use characters instead: 'b' for bmap (was EF_BMAP),
't' for true bmap (was EF_MAP), 'r' for revert (was EF_MAP+EF_BMAP,
more sillness), and 'n' for nmap (was EF_NMAP).  Callers changed.
(EF_NMAP): Remove.
This commit is contained in:
Markus Armbruster 2005-10-23 08:58:23 +00:00
parent a2ae5ebe5e
commit ba84b71f8d
5 changed files with 18 additions and 17 deletions

View file

@ -122,7 +122,7 @@ march(void)
skip = 1;
} else if (cp[-1] == 'B') {
unit_map(EF_LAND, lnd->lnd_uid, &ns, &origin);
draw_map(EF_BMAP, origin, 0, &ns);
draw_map('b', origin, 0, &ns);
skip = 1;
} else if (cp[-1] == 'f') {
struct emp_qelem *qp;