summaryrefslogtreecommitdiff
path: root/my_math.h
diff options
context:
space:
mode:
authorFox Caminiti <fox@foxcam.net>2022-08-15 10:08:07 -0400
committerFox Caminiti <fox@foxcam.net>2022-08-15 10:08:07 -0400
commit67898c6505c9180b5a5a31457f11d29b41fa91ba (patch)
tree16a472797ce22ec8645a04bbbe9167990e6081da /my_math.h
parent7cfb7ce652d1c13ab72392d95dc93d967bf505fb (diff)
fixes
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);