mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-08 01:10:28 +00:00
(svn r12691) -Fix (r12459): all company related news displayed the 'company is in trouble' message
This commit is contained in:
parent
b18f330739
commit
5a6014d7e3
@ -66,12 +66,13 @@ enum NewsCallback {
|
||||
|
||||
/**
|
||||
* Kinds of bankrupcy
|
||||
* @note These flags are or'd with player index
|
||||
*/
|
||||
enum NewsBankrupcy {
|
||||
NB_BTROUBLE, ///< Company is in trouble (warning)
|
||||
NB_BMERGER, ///< Company has been bought by another company
|
||||
NB_BBANKRUPT, ///< Company has gone bankrupt
|
||||
NB_BNEWCOMPANY, ///< A new company has been started
|
||||
NB_BTROUBLE = (1 << 4), ///< Company is in trouble (warning)
|
||||
NB_BMERGER = (2 << 4), ///< Company has been bought by another company
|
||||
NB_BBANKRUPT = (3 << 4), ///< Company has gone bankrupt
|
||||
NB_BNEWCOMPANY = (4 << 4), ///< A new company has been started
|
||||
};
|
||||
|
||||
struct NewsItem {
|
||||
|
Loading…
Reference in New Issue
Block a user