drc/DRCbasic.c: fix: syntax error

Recent error fix, feel free to use your version, cherry-pick or drop this commit.
This commit is contained in:
Darryl L. Miles 2026-03-25 12:39:20 +00:00
parent 131d86f998
commit efee2ffe89
1 changed files with 4 additions and 4 deletions

View File

@ -796,9 +796,9 @@ drcTile (tile, dinfo, arg)
* an exception area. Exception rules are ignored if
* the edge is outside an exception area.
*/
if (!isinside && ((cptr->drcc_exception & DRC_EXCEPTION_MASK) == 0)))
if (!isinside && ((cptr->drcc_exception & DRC_EXCEPTION_MASK) == 0))
continue;
if (isinside && ((cptr->drcc_exception & DRC_EXCEPTION_MASK) == 1)))
if (isinside && ((cptr->drcc_exception & DRC_EXCEPTION_MASK) == 1))
continue;
}
@ -1243,9 +1243,9 @@ drcTile (tile, dinfo, arg)
* an exception area. Exception rules are ignored if
* the edge is outside an exception area.
*/
if (!isinside && ((cptr->drcc_exception & DRC_EXCEPTION_MASK) == 0)))
if (!isinside && ((cptr->drcc_exception & DRC_EXCEPTION_MASK) == 0))
continue;
if (isinside && ((cptr->drcc_exception & DRC_EXCEPTION_MASK) == 1)))
if (isinside && ((cptr->drcc_exception & DRC_EXCEPTION_MASK) == 1))
continue;
}