mirror of
https://github.com/RTimothyEdwards/magic.git
synced 2026-09-01 02:28:41 +02:00
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:
+4
-4
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user