Even less magic

This commit is contained in:
NHOrus 2017-06-19 20:13:50 +03:00
parent 18a9be501f
commit e9aff2568f
7 changed files with 89 additions and 88 deletions

6
misc.c
View file

@ -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 */