summaryrefslogtreecommitdiff
path: root/src/blitter
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2008-06-18 21:19:04 +0000
committersmatz <smatz@openttd.org>2008-06-18 21:19:04 +0000
commit7a7ff65ac53cab72eddf2838000fbf95f5de9f42 (patch)
tree4997235d0f8568325d0c8f7c1412cca55e69496d /src/blitter
parentbc12e5453cca334705fe9d280a015e6c58a83dd6 (diff)
downloadopenttd-7a7ff65ac53cab72eddf2838000fbf95f5de9f42.tar.xz
(svn r13571) -Codechange: define channels in struct Colour in different order on LE and BE machines
Diffstat (limited to 'src/blitter')
-rw-r--r--src/blitter/32bpp_base.hpp7
1 files changed, 3 insertions, 4 deletions
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];
}
/**