diff options
-rw-r--r-- | src/core/SkScan_AntiPath.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/SkScan_AntiPath.cpp b/src/core/SkScan_AntiPath.cpp index 98f3b25aea..398f786c95 100644 --- a/src/core/SkScan_AntiPath.cpp +++ b/src/core/SkScan_AntiPath.cpp @@ -69,7 +69,8 @@ BaseSuperBlitter::BaseSuperBlitter(SkBlitter* realBlitter, const SkIRect& ir, fSuperLeft = left << SHIFT; fWidth = right - left; fCurrIY = -1; - SkDEBUGCODE(fCurrX = -1; fCurrY = -1;) + fCurrY = -1; + SkDEBUGCODE(fCurrX = -1;) } class SuperBlitter : public BaseSuperBlitter { |