X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=misc.c;h=14d0622541ac2805f5540110375d52cde89d1dc0;hb=cb293f4aa4f29f0da11c1ddae9ee0712f4e1dd0a;hp=9e90d05613f14281879c12a4989226f98c53ca55;hpb=124e7768b45712a7c2dbd979bda88e2e54fd0ed6;p=open-adventure.git diff --git a/misc.c b/misc.c index 9e90d05..14d0622 100644 --- a/misc.c +++ b/misc.c @@ -620,11 +620,11 @@ void put(obj_t object, loc_t where, int pval) { /* put() is the same as move(), except it returns a value used to set * up the negated game.prop values for the repository objects. */ move(object, where); - /* (ESR) Read this in combination with the macro defintions in advebt.h. + /* (ESR) Read this in combination with the macro defintions in advent.h. */ game.objects[object].prop = PROP_STASHIFY(pval); -#ifdef PROP_SET_SEEN - PROP_SET_SEEN(object); +#ifdef OBJECT_SET_SEEN + OBJECT_SET_SEEN(object); #endif }