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
|
* an exception area. Exception rules are ignored if
|
||||||
* the edge is outside an exception area.
|
* 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;
|
continue;
|
||||||
if (isinside && ((cptr->drcc_exception & DRC_EXCEPTION_MASK) == 1)))
|
if (isinside && ((cptr->drcc_exception & DRC_EXCEPTION_MASK) == 1))
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1243,9 +1243,9 @@ drcTile (tile, dinfo, arg)
|
||||||
* an exception area. Exception rules are ignored if
|
* an exception area. Exception rules are ignored if
|
||||||
* the edge is outside an exception area.
|
* 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;
|
continue;
|
||||||
if (isinside && ((cptr->drcc_exception & DRC_EXCEPTION_MASK) == 1)))
|
if (isinside && ((cptr->drcc_exception & DRC_EXCEPTION_MASK) == 1))
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue