diff options
author | rubidium <rubidium@openttd.org> | 2011-05-02 20:59:54 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2011-05-02 20:59:54 +0000 |
commit | ff143c67085ad22abb5f6920873fd0ff9eddf603 (patch) | |
tree | f4f5fe046bd9b07d8a9c20130d7e115eb80f45ba /src/company_cmd.cpp | |
parent | cf30941fab66fe6232e5b15b59ebedc4ea430e1e (diff) | |
download | openttd-ff143c67085ad22abb5f6920873fd0ff9eddf603.tar.xz |
(svn r22413) -Document: even more stuff
Diffstat (limited to 'src/company_cmd.cpp')
-rw-r--r-- | src/company_cmd.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/company_cmd.cpp b/src/company_cmd.cpp index 4944b66b1..46c310e82 100644 --- a/src/company_cmd.cpp +++ b/src/company_cmd.cpp @@ -393,7 +393,9 @@ bad_town_name:; } } +/** Sorting weights for the company colours. */ static const byte _colour_sort[COLOUR_END] = {2, 2, 3, 2, 3, 2, 3, 2, 3, 2, 2, 2, 3, 1, 1, 1}; +/** Similar colours, so we can try to prevent same coloured companies. */ static const Colours _similar_colour[COLOUR_END][2] = { { COLOUR_BLUE, COLOUR_LIGHT_BLUE }, // COLOUR_DARK_BLUE { COLOUR_GREEN, COLOUR_DARK_GREEN }, // COLOUR_PALE_GREEN @@ -685,6 +687,7 @@ static void HandleBankruptcyTakeover(Company *c) } } +/** Called every tick for updating some company info. */ void OnTick_Companies() { if (_game_mode == GM_EDITOR) return; |