players.c
changeset 2498 befad2fe53d2
parent 2484 8e0c88a833fb
child 2535 ed8b9592dc64
--- a/players.c	Thu Oct 06 18:28:27 2005 +0000
+++ b/players.c	Fri Oct 07 07:35:15 2005 +0000
@@ -196,7 +196,7 @@
 bool CheckPlayerHasMoney(int32 cost)
 {
 	if (cost > 0) {
-		uint pid = _current_player;
+		PlayerID pid = _current_player;
 		if (pid < MAX_PLAYERS && cost > GetPlayer(pid)->player_money) {
 			SetDParam(0, cost);
 			_error_message = STR_0003_NOT_ENOUGH_CASH_REQUIRES;
@@ -284,7 +284,7 @@
 
 bool CheckTileOwnership(TileIndex tile)
 {
-	byte owner = GetTileOwner(tile);
+	PlayerID owner = GetTileOwner(tile);
 
 	assert(owner <= OWNER_WATER);