Browse Source

* changed transparAnt to transparEnt

luk 22 years ago
parent
commit
580bd29c50
1 changed files with 2 additions and 2 deletions
  1. 2 2
      fcl/image/fpcolors.inc

+ 2 - 2
fcl/image/fpcolors.inc

@@ -17,9 +17,9 @@ const
   BytesNeeded : array[TColorFormat] of byte =
   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);
       (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;
   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);
   colBlack      : TFPColor = (Red: $0000; Green: $0000; Blue: $0000; Alpha: alphaOpaque);
   colBlue       : TFPColor = (Red: $0000; Green: $0000; Blue: $ffff; Alpha: alphaOpaque);
   colBlue       : TFPColor = (Red: $0000; Green: $0000; Blue: $ffff; Alpha: alphaOpaque);
   colGreen      : TFPColor = (Red: $0000; Green: $ffff; Blue: $0000; Alpha: alphaOpaque);
   colGreen      : TFPColor = (Red: $0000; Green: $ffff; Blue: $0000; Alpha: alphaOpaque);