summaryrefslogtreecommitdiff
path: root/my_math.h
diff options
context:
space:
mode:
Diffstat (limited to 'my_math.h')
-rw-r--r--my_math.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/my_math.h b/my_math.h
index cf491f1..e1144e3 100644
--- a/my_math.h
+++ b/my_math.h
@@ -685,7 +685,6 @@ Uint32ToNormalizedCol(uint32 LayerPixel)
inline real32
Uint32ToNormalizedBW(uint32 LayerPixel)
{
- uint8 A2 = (LayerPixel >> 24);
uint8 R2 = (LayerPixel >> 16);
uint8 G2 = (LayerPixel >> 8);
uint8 B2 = (LayerPixel >> 0);