From 8800d9743b861969b981ca10caeac70350f7064b Mon Sep 17 00:00:00 2001 From: Alex Foulon Date: Mon, 8 Nov 2010 19:20:12 +0000 Subject: [PATCH] * Fix color mask order in Dither class. --- python/caca/dither.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/caca/dither.py b/python/caca/dither.py index 3a78ea6..f3d7a23 100644 --- a/python/caca/dither.py +++ b/python/caca/dither.py @@ -68,7 +68,7 @@ class Dither(_Dither): ] self._dither = _lib.caca_create_dither(bpp, width, height, pitch, - bmask, gmask, rmask, amask) + rmask, gmask, bmask, amask) if self._dither == 0: raise DitherError, "Failed to create dither object"