Even less magic
This commit is contained in:
parent
18a9be501f
commit
e9aff2568f
7 changed files with 89 additions and 88 deletions
6
misc.c
6
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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue