(svn r2857) -Fix: PlayerID is not a valid type for a player-bit-field. Partly reverted r2290
authortruelight
Thu, 11 Aug 2005 19:21:46 +0000
changeset 2331 72a9f9b31e4e
parent 2330 03f841063adf
child 2332 fa9dc1350e22
(svn r2857) -Fix: PlayerID is not a valid type for a player-bit-field. Partly reverted r2290
engine.h
--- a/engine.h	Thu Aug 11 13:20:37 2005 +0000
+++ b/engine.h	Thu Aug 11 19:21:46 2005 +0000
@@ -82,10 +82,10 @@
 	uint16 duration_phase_1, duration_phase_2, duration_phase_3;
 	byte lifelength;
 	byte flags;
-	PlayerID preview_player;
+	byte preview_player;
 	byte preview_wait;
 	byte railtype;
-	PlayerID player_avail;
+	byte player_avail;
 	byte type;				// type, ie VEH_Road, VEH_Train, etc. Same as in vehicle.h
 } Engine;