summaryrefslogtreecommitdiff
path: root/src/gfx_func.h
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/gfx_func.h
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/gfx_func.h')
-rw-r--r--src/gfx_func.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gfx_func.h b/src/gfx_func.h
index cb4d04c84..c6c633ec2 100644
--- a/src/gfx_func.h
+++ b/src/gfx_func.h
@@ -62,7 +62,7 @@ extern int _pal_count_dirty;
extern int _num_resolutions;
extern Dimension _resolutions[32];
extern Dimension _cur_resolution;
-extern Colour _cur_palette[256];
+extern Colour _cur_palette[256]; ///< Current palette. Entry 0 has to be always fully transparent!
void HandleKeypress(uint32 key);
void HandleCtrlChanged();