From db5c628b34d343e50631a9d73638c3e9d065c039 Mon Sep 17 00:00:00 2001 From: nukeykt Date: Sat, 29 Jun 2019 01:10:34 +0900 Subject: [PATCH] Fix silly error with yax stuff --- source/blood/src/db.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blood/src/db.h b/source/blood/src/db.h index 4552cddea..537e6fb9f 100644 --- a/source/blood/src/db.h +++ b/source/blood/src/db.h @@ -280,7 +280,7 @@ extern unsigned short nextXSector[kMaxXSectors]; #ifdef YAX_ENABLE static inline bool yax_hasnextwall(int nWall) { - return yax_getnextwall(nWall, YAX_CEILING) >= 0 || yax_getnextwall(nWall, YAX_FLOOR); + return yax_getnextwall(nWall, YAX_CEILING) >= 0 || yax_getnextwall(nWall, YAX_FLOOR) >= 0; } #endif