Changeset - r17149:9460b4a23572
[Not reviewed]
master
0 2 0
rubidium - 13 years ago 2011-01-23 00:11:15
rubidium@openttd.org
(svn r21897) -Fix (21707): Kenobi visited IsValidConsoleColour shortly
2 files changed with 4 insertions and 3 deletions:
0 comments (0 inline, 0 general)
src/console_gui.cpp
Show inline comments
 
@@ -509,7 +509,7 @@ bool IsValidConsoleColour(TextColour c)
 
	/* A text colour from the palette is used; must be the company
 
	 * colour gradient, so it must be one of those. */
 
	c &= ~TC_IS_PALETTE_COLOUR;
 
	for (uint i = TC_BEGIN; i < TC_END; i++) {
 
	for (uint i = COLOUR_BEGIN; i < COLOUR_END; i++) {
 
		if (_colour_gradient[i][4] == c) return true;
 
	}
 

	
src/gfx_type.h
Show inline comments
 
@@ -181,7 +181,8 @@ struct SubSprite {
 
};
 

	
 
enum Colours {
 
	COLOUR_DARK_BLUE,
 
	COLOUR_BEGIN,
 
	COLOUR_DARK_BLUE = COLOUR_BEGIN,
 
	COLOUR_PALE_GREEN,
 
	COLOUR_PINK,
 
	COLOUR_YELLOW,
 
@@ -200,7 +201,7 @@ enum Colours {
 
	COLOUR_END,
 
	INVALID_COLOUR = 0xFF,
 
};
 
template <> struct EnumPropsT<Colours> : MakeEnumPropsT<Colours, byte, COLOUR_DARK_BLUE, COLOUR_END, INVALID_COLOUR, 4> {};
 
template <> struct EnumPropsT<Colours> : MakeEnumPropsT<Colours, byte, COLOUR_BEGIN, COLOUR_END, INVALID_COLOUR, 4> {};
 

	
 
/** Colour of the strings, see _string_colourmap in table/palettes.h or docs/ottd-colourtext-palette.png */
 
enum TextColour {
0 comments (0 inline, 0 general)