diff options
Diffstat (limited to 'afb/afbbresd.c')
-rw-r--r-- | afb/afbbresd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/afb/afbbresd.c b/afb/afbbresd.c index 581ecb84f..0b0d5d6fe 100644 --- a/afb/afbbresd.c +++ b/afb/afbbresd.c @@ -93,8 +93,8 @@ unsigned char *bgrrops; register PixelType *addrl; register int e3 = e2-e1; register unsigned long bit; - PixelType leftbit = mask[0]; /* leftmost bit to process in new word */ - PixelType rightbit = mask[PPW-1]; /* rightmost bit to process in new word */ + PixelType leftbit = mfbGetmask(0); /* leftmost bit to process in new word */ + PixelType rightbit = mfbGetmask(PPW-1); /* rightmost bit to process in new word */ int dashIndex; int dashOffset; int dashRemaining; @@ -125,7 +125,7 @@ unsigned char *bgrrops; e = saveE; len = saveLen; - bit = mask[x1 & PIM]; + bit = mfbGetmask(x1 & PIM); rop = fgrop; if (!isDoubleDash) |