Spelling fixes

This commit is contained in:
chase
2018-05-26 11:50:47 -05:00
committed by Jon Trulson
parent 8d2fe2486c
commit 809c3d8bb6
146 changed files with 240 additions and 240 deletions

View File

@@ -205,7 +205,7 @@ CARD32 outLong;
errorAcc += 3 * *pPrevError; /* 3 * error above right */
errorAcc >>= 4; /* /16 */
errorAcc += *pSrc++ ^ invert; /* + "x"; w/ blackIsZero handled */
if (errorAcc >= 128) /* output white: dont set out bit */
if (errorAcc >= 128) /* output white: don't set out bit */
errorAcc -= 255; /* sub value of white from errorAcc */
else /* output black: errorAcc -= 0 */
outLong |= mask;