From 119581c81b82a0d31adbe85b2bbb61fae09e717c Mon Sep 17 00:00:00 2001 From: avolkov Date: Fri, 11 Nov 2005 05:00:46 +0000 Subject: [PATCH] Do not use RLE coding on dynamic work surfaces (too slow) git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1986 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/libs/graphics/drawable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sc2/src/sc2code/libs/graphics/drawable.c b/sc2/src/sc2code/libs/graphics/drawable.c index 29d8ed36a..3638b56fb 100644 --- a/sc2/src/sc2code/libs/graphics/drawable.c +++ b/sc2/src/sc2code/libs/graphics/drawable.c @@ -255,5 +255,5 @@ SetFrameTransparentColor (FRAMEPTR Frame, COLOR c32k) COLORtoPalette (c32k, &color); TFB_DrawCanvas_SetTransparentColor (Frame->image->NormalImg, - color.r, color.g, color.b, TRUE); + color.r, color.g, color.b, FALSE); }