summaryrefslogtreecommitdiff
path: root/src/livery.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-08-23 22:28:35 +0000
committerrubidium <rubidium@openttd.org>2010-08-23 22:28:35 +0000
commit9d1145e50cead52c479900e8a05e1b154860cec2 (patch)
tree76af47fbff3dc468881923817b3b9276ffbd10f3 /src/livery.h
parentf6f218cf6b360fa8524f851d2e33aad275f1fe39 (diff)
downloadopenttd-9d1145e50cead52c479900e8a05e1b154860cec2.tar.xz
(svn r20605) -Fix [FS#4063]: let NewGRFs var43 var (information about liveries) for vehicles not be influenced by the local setting determining whether to show liveries or not.
Diffstat (limited to 'src/livery.h')
-rw-r--r--src/livery.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/livery.h b/src/livery.h
index aa7af96f5..8806aff58 100644
--- a/src/livery.h
+++ b/src/livery.h
@@ -14,6 +14,10 @@
#include "company_type.h"
+static const byte LIT_NONE = 0; ///< Don't show the liveries at all
+static const byte LIT_COMPANY = 1; ///< Show the liveries of your own company
+static const byte LIT_ALL = 2; ///< Show the liveries of all companies
+
/** List of different livery schemes. */
enum LiveryScheme {
LS_BEGIN = 0,