X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=misc.c;h=ee2ac25cd95a90a07b559548240959359f7391bd;hb=f4ac82b9f816d866a57c1c470e14c2635f23c10b;hp=33ec95ba0b96e6af01ae87c54c23fb3663e4b4f1;hpb=624ba16aadabdcf84a6c04ae17d0d0ff1d166835;p=open-adventure.git diff --git a/misc.c b/misc.c index 33ec95b..ee2ac25 100644 --- a/misc.c +++ b/misc.c @@ -417,7 +417,7 @@ void MOVE(long object, long where) from = game.fixed[object - NOBJECTS]; else from = game.place[object]; - if (from != NOWHERE && from != CARRIED && !SPECIAL(from)) + if (from != LOC_NOWHERE && from != CARRIED && !SPECIAL(from)) CARRY(object, from); DROP(object, where); } @@ -660,8 +660,8 @@ void DATIME(long* d, long* t) void bug(enum bugtype num, const char *error_string) { - fprintf(stderr, "Fatal error %d, %s.\n", num, error_string); - exit(EXIT_FAILURE); + fprintf(stderr, "Fatal error %d, %s.\n", num, error_string); + exit(EXIT_FAILURE); } /* end */