aircraft_cmd.c
changeset 2635 88b8b74c01ac
parent 2630 35249d2ded3e
child 2639 8a7342eb3a78
--- a/aircraft_cmd.c	Sun Nov 13 21:16:34 2005 +0000
+++ b/aircraft_cmd.c	Mon Nov 14 08:09:57 2005 +0000
@@ -475,14 +475,14 @@
  * @param x,y unused
  * @param p1 vehicle ID of the aircraft to refit
  * @param p2 various bitstuffed elements
- * - p2 = (bit 0-7) - the new cargo type to refit to (p2 & 0xFF)
+ * - p2 = (bit 0-7) - the new cargo type to refit to
  */
 int32 CmdRefitAircraft(int x, int y, uint32 flags, uint32 p1, uint32 p2)
 {
 	Vehicle *v;
 	int pass, mail;
 	int32 cost;
-	CargoID new_cid = p2 & 0xFF; //gets the cargo number
+	CargoID new_cid = GB(p2, 0, 8);
 	const AircraftVehicleInfo *avi;
 
 	if (!IsVehicleIndex(p1)) return CMD_ERROR;