summaryrefslogtreecommitdiff
path: root/src/plot/32bpp-xbgr8888.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plot/32bpp-xbgr8888.c')
-rw-r--r--src/plot/32bpp-xbgr8888.c4
1 files changed, 1 insertions, 3 deletions
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)