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:
parent
131d86f998
commit
efee2ffe89
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue