From 0947868670e0466a62a0d7d8bb15f5a7e7ac5ea6 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Tue, 19 Apr 2016 15:40:47 +0100 Subject: Fix variable name. --- src/plot/32bpp-xbgr8888.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/plot') diff --git a/src/plot/32bpp-xbgr8888.c b/src/plot/32bpp-xbgr8888.c index a65719b..a0ed066 100644 --- a/src/plot/32bpp-xbgr8888.c +++ b/src/plot/32bpp-xbgr8888.c @@ -42,9 +42,7 @@ static inline nsfb_colour_t pixel_to_colour(UNUSED nsfb_t *nsfb, uint32_t pixel) /* convert a colour value to a 32bpp pixel value ready for screen output */ static inline uint32_t colour_to_pixel(UNUSED nsfb_t *nsfb, nsfb_colour_t c) { - return ((pixel & 0xFF) << 24) | - ((pixel & 0xFF00) << 8) | - ((pixel & 0xFF0000) >> 8); + return ((c & 0xFF) << 24) | ((c & 0xFF00) << 8) | ((c & 0xFF0000) >> 8); } #else /* __BYTE_ORDER == __BIG_ENDIAN */ static inline nsfb_colour_t pixel_to_colour(UNUSED nsfb_t *nsfb, uint32_t pixel) -- cgit v1.2.3