From 422dad4cb3891b5c40d268a9ffa7ca20c8531159 Mon Sep 17 00:00:00 2001 From: zueuk Date: Sat, 4 Oct 2008 04:03:36 +0000 Subject: [PATCH] *** empty log message *** --- 2.10/Source/ImageMaker.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2.10/Source/ImageMaker.pas b/2.10/Source/ImageMaker.pas index 694b806..2c4535d 100644 --- a/2.10/Source/ImageMaker.pas +++ b/2.10/Source/ImageMaker.pas @@ -308,7 +308,7 @@ begin for i := 0 to fcp.Height - 1 do begin bx := 0; - if (i and $7 = 0) and assigned(FOnProgress) then FOnProgress(i / fcp.Height); + if (i and $3f = 0) and assigned(FOnProgress) then FOnProgress(i / fcp.Height); AlphaRow := PByteArray(FAlphaBitmap.scanline[YOffset + i]); Row := PRGBArray(FBitmap.scanline[YOffset + i]);