(svn r14734) -Codechange: type of bankrupt_asked is CompanyMask, not byte

This commit is contained in:
smatz
2008-12-24 00:25:17 +00:00
parent 81f409e8e7
commit 8a06e67067
3 changed files with 5 additions and 5 deletions

View File

@@ -564,7 +564,7 @@ static void CompanyCheckBankrupt(Company *c)
* is no THE-END, otherwise mark the client as spectator to make sure
* he/she is no long in control of this company */
if (!_networking) {
c->bankrupt_asked = 0xFF;
c->bankrupt_asked = MAX_UVALUE(CompanyMask);
c->bankrupt_timeout = 0x456;
break;
}