1
0
Fork 0
mirror of https://codeberg.org/noisytoot/notnotdnethack.git synced 2025-04-04 07:30:42 +01:00

Replace a few leftover long wornmasks with long longs

This commit is contained in:
Ron Nazarov 2024-05-30 02:15:24 +01:00
parent 0198060ad2
commit bbc3051a85
Signed by: noisytoot
GPG key ID: 1D43EF4F4492268B
2 changed files with 3 additions and 3 deletions
include
src

View file

@ -3048,7 +3048,7 @@ extern struct obj *uring_otyp(int);
extern struct obj *uring_art(int);
extern boolean item_has_property(struct obj *, int);
extern void get_item_property_list(int *, struct obj*, int);
extern void setworn(struct obj *,long);
extern void setworn(struct obj *,long long);
extern void m_lose_armor(struct monst *,struct obj *);
extern void setnotworn(struct obj *);
extern void mon_set_minvis(struct monst *);

View file

@ -365,7 +365,7 @@ get_item_property_list(int *property_list, struct obj *obj, int otyp)
/* Updated to use the extrinsic and blocked fields. */
void
setworn(register struct obj *obj, long mask)
setworn(register struct obj *obj, long long mask)
{
register const struct worn *wp;
register struct obj *oobj;
@ -2590,7 +2590,7 @@ light_damage(void * arg, long timeout)
} else if (obj->where == OBJ_MINVENT && obj->owornmask) {
struct obj *armor = which_armor(obj->ocarry, W_ARMC);
int armpro = 0;
long unwornmask;
long long unwornmask;
struct monst *mtmp;
x = obj->ocarry->mx;
y = obj->ocarry->my;