Remove unnecessary macro that wasn't ideally named

Also add a comment that states the intent.
This commit is contained in:
nhmall
2024-11-26 23:27:29 -05:00
parent 3615b17b62
commit 15e70035d0
2 changed files with 2 additions and 2 deletions

View File

@@ -104,7 +104,6 @@ enum levl_typ_types {
#define IS_WALL(typ) ((typ) && (typ) <= DBWALL)
#define IS_STWALL(typ) ((typ) <= DBWALL) /* STONE <= (typ) <= DBWALL */
#define IS_OBSTRUCTED(typ) ((typ) < POOL) /* absolutely nonaccessible */
#define IS_CORR(typ) ((typ) == CORR || (typ) == SCORR)
#define IS_SDOOR(typ) ((typ) == SDOOR)
#define IS_DOOR(typ) ((typ) == DOOR)
#define IS_DOORJOIN(typ) (IS_OBSTRUCTED(typ) || (typ) == IRONBARS)