From 917957955790ed882f6e66764b6ad33f18ef7002 Mon Sep 17 00:00:00 2001 From: egottlieb Date: Mon, 16 Aug 2010 09:55:35 -0400 Subject: [PATCH] Raised binarization cutoff to eliminate alpha-blending of trollface. --- test/testshape.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testshape.c b/test/testshape.c index 2bf9c60d2..cad28c40b 100644 --- a/test/testshape.c +++ b/test/testshape.c @@ -85,7 +85,7 @@ int main(int argc,char** argv) { format = pictures[i].surface->format; if(format->Amask != 0) { pictures[i].mode.mode = ShapeModeBinarizeAlpha; - pictures[i].mode.parameters.binarizationCutoff = 1; + pictures[i].mode.parameters.binarizationCutoff = 255; } else { pictures[i].mode.mode = ShapeModeColorKey;