From 0de833236640a8ffc1bc0edff3b7b4f9a6c8612a Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 23 Jan 2011 00:11:15 +0000 Subject: [PATCH] (svn r21897) -Fix (21707): Kenobi visited IsValidConsoleColour shortly --- src/console_gui.cpp | 2 +- src/gfx_type.h | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/console_gui.cpp b/src/console_gui.cpp index dd3f065ef5..87e2869e77 100644 --- a/src/console_gui.cpp +++ b/src/console_gui.cpp @@ -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; } diff --git a/src/gfx_type.h b/src/gfx_type.h index 79b30fb2b7..146d033ba9 100644 --- a/src/gfx_type.h +++ b/src/gfx_type.h @@ -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 : MakeEnumPropsT {}; +template <> struct EnumPropsT : MakeEnumPropsT {}; /** Colour of the strings, see _string_colourmap in table/palettes.h or docs/ottd-colourtext-palette.png */ enum TextColour {