(svn r10106) -Fix (r10098): there's always a compiler complaining about something...

This commit is contained in:
rubidium 2007-06-11 19:29:42 +00:00
parent d0250f6108
commit 01593bdb6a
1 changed files with 1 additions and 1 deletions

View File

@ -654,7 +654,7 @@ static bool AiCheckIfRouteIsGood(Player *p, FoundRoute *fr, byte bitmask)
/* Random value between 37 and 292. Low values are exponentially more likely
* With 50% chance the value will be under 52 tiles */
int min_distance = 36 + 1 << (Random() % 9); // 0..8
int min_distance = 36 + (1 << (Random() % 9)); // 0..8
/* Make sure distance to closest station is < min_distance tiles. */
if (dist != 0xFFFF && dist > min_distance) return false;