mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-06 17:10:28 +02:00
* Fix from Paul Ishenin to fix assigning
git-svn-id: trunk@11291 -
This commit is contained in:
parent
30a51c2dee
commit
bf9e4971be
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user