(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.

This commit is contained in:
rubidium
2010-08-23 22:28:35 +00:00
parent f6f218cf6b
commit 9d1145e50c
4 changed files with 13 additions and 8 deletions

View File

@@ -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,