From 67898c6505c9180b5a5a31457f11d29b41fa91ba Mon Sep 17 00:00:00 2001 From: Fox Caminiti Date: Mon, 15 Aug 2022 10:08:07 -0400 Subject: fixes --- my_math.h | 1 - 1 file changed, 1 deletion(-) (limited to 'my_math.h') 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); -- cgit v1.2.3