(svn r21637) -Codechange: make it more clear that IS_PALETTE_COLOUR belongs to TextColour

This commit is contained in:
rubidium
2010-12-25 19:47:15 +00:00
parent 6c6c92e99f
commit de7a30cc2e
5 changed files with 8 additions and 8 deletions

View File

@@ -224,7 +224,7 @@ enum TextColour {
TC_BLACK = 0x10,
TC_INVALID = 0xFF,
IS_PALETTE_COLOUR = 0x100, ///< colour value is already a real palette colour index, not an index of a StringColour
TC_IS_PALETTE_COLOUR = 0x100, ///< Colour value is already a real palette colour index, not an index of a StringColour.
};
DECLARE_ENUM_AS_BIT_SET(TextColour)