diff options
author | rubidium <rubidium@openttd.org> | 2010-12-25 20:02:04 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2010-12-25 20:02:04 +0000 |
commit | 9b2a54bfbf418952941a4b4e62a21c1f96281129 (patch) | |
tree | 4e5c3b66614442bdd76b70c7cf5537d442c52429 /src/gfx_type.h | |
parent | 1d21903eb40cc4463c3fd01a4e14129a14b07445 (diff) | |
download | openttd-9b2a54bfbf418952941a4b4e62a21c1f96281129.tar.xz |
(svn r21640) -Change/Feature-ish: allow disabling the shading when drawing text
Diffstat (limited to 'src/gfx_type.h')
-rw-r--r-- | src/gfx_type.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gfx_type.h b/src/gfx_type.h index 0442fa3d8..e99e3414d 100644 --- a/src/gfx_type.h +++ b/src/gfx_type.h @@ -225,6 +225,7 @@ enum TextColour { TC_INVALID = 0xFF, TC_IS_PALETTE_COLOUR = 0x100, ///< Colour value is already a real palette colour index, not an index of a StringColour. + TC_NO_SHADE = 0x200, ///< Do not add shading to this text colour. }; DECLARE_ENUM_AS_BIT_SET(TextColour) |