On some MSDOS ports, STATIC_OVL doesn't equate
to static, so taking_off in do_wear.c conflicts with the
one in invent.c in those environments.  Somebody
out there might wish to try and build the 16 port and
tune it to work properly someday.
This commit is contained in:
nethack.allison
2003-08-04 01:39:31 +00:00
parent 5f9ff08c83
commit 9ba4d7cf2b
2 changed files with 10 additions and 11 deletions

View File

@@ -10,7 +10,8 @@ STATIC_DCL long takeoff_mask, taking_off;
#else /* OVLB */
STATIC_OVL NEARDATA long takeoff_mask = 0L, taking_off = 0L;
STATIC_OVL NEARDATA long takeoff_mask = 0L;
static taking_off = 0L;
static NEARDATA int todelay;
static boolean cancelled_don = FALSE;