* Fix from Paul Ishenin to fix assigning

git-svn-id: trunk@11291 -
This commit is contained in:
michael 2008-06-27 17:45:08 +00:00
parent 30a51c2dee
commit bf9e4971be

View File

@ -217,7 +217,7 @@ var Col : TFPColor;
begin
fppal:=TFPPalette.Create(256);
Col.Alpha:=AlphaOpaque;
for i:=$FF downto 0 do
for i:=0 to $FF do
begin
Col.Red:=i;
Col.Red:=(Col.Red shl 8) + Col.Red;