(svn r14732) -Codechange: replace some magic number with less magic constants and use the proper type for a few variables.

This commit is contained in:
rubidium
2008-12-23 21:03:43 +00:00
parent ece37ca2c0
commit c3746a55bb
4 changed files with 5 additions and 5 deletions

View File

@@ -315,7 +315,7 @@ static CompanyID GetBestCompany(uint8 pp)
const Company *c;
int32 best_hist;
CompanyID best_company;
uint mask = 0;
CompanyMask mask = 0;
do {
best_hist = -1;