X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=misc.c;h=ee2ac25cd95a90a07b559548240959359f7391bd;hp=33ec95ba0b96e6af01ae87c54c23fb3663e4b4f1;hb=e9aff2568f200be6cf47ec0bd945902a636bbd71;hpb=18a9be501ff8f0c57c5d540d0f5cd080c0438cd0 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 */