(svn r21640) -Change/Feature-ish: allow disabling the shading when drawing text

This commit is contained in:
rubidium
2010-12-25 20:02:04 +00:00
parent 89d95a2c95
commit 0e9af1e89e
2 changed files with 3 additions and 2 deletions

View File

@@ -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)