From 7a7ff65ac53cab72eddf2838000fbf95f5de9f42 Mon Sep 17 00:00:00 2001 From: smatz Date: Wed, 18 Jun 2008 21:19:04 +0000 Subject: (svn r13571) -Codechange: define channels in struct Colour in different order on LE and BE machines --- src/blitter/32bpp_base.hpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/blitter/32bpp_base.hpp') diff --git a/src/blitter/32bpp_base.hpp b/src/blitter/32bpp_base.hpp index dca8728ad..aa3d8f72f 100644 --- a/src/blitter/32bpp_base.hpp +++ b/src/blitter/32bpp_base.hpp @@ -37,11 +37,10 @@ public: /** * Look up the colour in the current palette. - **/ - static inline uint32 LookupColourInPalette(uint8 index) + */ + static inline uint32 LookupColourInPalette(uint index) { - if (index == 0) return 0x00000000; // Full transparent pixel */ - return ComposeColour(0xFF, _cur_palette[index].r, _cur_palette[index].g, _cur_palette[index].b); + return _cur_palette[index]; } /** -- cgit v1.2.3-54-g00ecf