* changed transparAnt to transparEnt

This commit is contained in:
luk 2003-10-16 21:55:05 +00:00
parent 9d32a97d00
commit 580bd29c50

View File

@ -17,9 +17,9 @@ const
BytesNeeded : array[TColorFormat] of byte =
(1,1,1,1,2,3,1,2,4,2,2,3,4,6,1,2,4,8,2,2,3,4,6,1,2,4,8);
alphaTransparant = $0000;
alphaTransparent = $0000;
alphaOpaque = $FFFF;
colTransparent: TFPColor = (Red: $0000; Green: $0000; Blue: $0000; Alpha: alphaTransparant);
colTransparent: TFPColor = (Red: $0000; Green: $0000; Blue: $0000; Alpha: alphaTransparent);
colBlack : TFPColor = (Red: $0000; Green: $0000; Blue: $0000; Alpha: alphaOpaque);
colBlue : TFPColor = (Red: $0000; Green: $0000; Blue: $ffff; Alpha: alphaOpaque);
colGreen : TFPColor = (Red: $0000; Green: $ffff; Blue: $0000; Alpha: alphaOpaque);