summaryrefslogtreecommitdiff
path: root/src/console_type.h
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2011-01-01 17:02:29 +0000
committersmatz <smatz@openttd.org>2011-01-01 17:02:29 +0000
commit666fbb28c273ab94ac854b7cdda22c0881a24dba (patch)
tree51f25f1aec5ad360d95379feb4a5d4a586873305 /src/console_type.h
parent62bc55cf7be5afc1c70bdd358e2d2748163f2881 (diff)
downloadopenttd-666fbb28c273ab94ac854b7cdda22c0881a24dba.tar.xz
(svn r21687) -Fix: verify the colour code we received from the server is valid
Diffstat (limited to 'src/console_type.h')
-rw-r--r--src/console_type.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/console_type.h b/src/console_type.h
index f8fec98d2..4e08326af 100644
--- a/src/console_type.h
+++ b/src/console_type.h
@@ -30,4 +30,10 @@ enum ConsoleColour {
CC_WHITE = 12,
};
+static inline bool IsValidConsoleColour(uint c)
+{
+ return c == CC_DEFAULT || c == CC_ERROR || c == CC_WARNING || c == CC_INFO ||
+ c == CC_DEBUG || c == CC_COMMAND || c == CC_WHITE;
+}
+
#endif /* CONSOLE_TYPE_H */