1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-23 22:49:09 +00:00

(svn r12244) -Fix (r12150): typo resulting in no players are given the engine preview offer

This commit is contained in:
smatz
2008-02-25 02:09:04 +00:00
parent f352512c8d
commit 27284db36f

View File

@@ -218,7 +218,7 @@ static PlayerID GetBestPlayer(uint8 pp)
if (best_player == PLAYER_SPECTATOR) return PLAYER_SPECTATOR;
SetBit(mask, best_player);
} while (--p != 0);
} while (--pp != 0);
return best_player;
}