mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 06:41:59 +00:00
Fix silly error with yax stuff
This commit is contained in:
parent
2867131c86
commit
db5c628b34
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue