diff options
author | rubidium <rubidium@openttd.org> | 2010-12-25 19:47:15 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2010-12-25 19:47:15 +0000 |
commit | 2c41b8ee97f4b6211a4cb88dc4df460b615470fb (patch) | |
tree | 1c4c803f95555fa0f628e3a488bdf213f3714635 /src/gfx_type.h | |
parent | 13c5cd820b30cd3c5a7b1236e24a187ac835f7d5 (diff) | |
download | openttd-2c41b8ee97f4b6211a4cb88dc4df460b615470fb.tar.xz |
(svn r21637) -Codechange: make it more clear that IS_PALETTE_COLOUR belongs to TextColour
Diffstat (limited to 'src/gfx_type.h')
-rw-r--r-- | src/gfx_type.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gfx_type.h b/src/gfx_type.h index b1ee21172..0442fa3d8 100644 --- a/src/gfx_type.h +++ b/src/gfx_type.h @@ -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) |