engine.c
changeset 2469 1bfbb0dc0b75
parent 2242 27fa4807cd61
child 2477 d454d5152386
--- a/engine.c	Tue Sep 27 20:55:42 2005 +0000
+++ b/engine.c	Wed Sep 28 19:35:36 2005 +0000
@@ -761,7 +761,7 @@
 
 	do {
 		best_hist = -1;
-		best_player = -1;
+		best_player = OWNER_SPECTATOR;
 		FOR_ALL_PLAYERS(p) {
 			if (p->is_active && p->block_preview == 0 && !HASBIT(mask, p->index) &&
 					p->old_economy[0].performance_history > best_hist) {
@@ -770,7 +770,7 @@
 			}
 		}
 
-		if (best_player == (PlayerID)-1) return -1;
+		if (best_player == OWNER_SPECTATOR) return OWNER_SPECTATOR;
 
 		SETBIT(mask, best_player);
 	} while (--pp != 0);
@@ -797,7 +797,7 @@
  			} else if (e->preview_player != 0xFF) {
 				PlayerID best_player = GetBestPlayer(e->preview_player);
 
-				if (best_player == (PlayerID)-1) {
+				if (best_player == OWNER_SPECTATOR) {
 					e->preview_player = 0xFF;
 					continue;
 				}