src/vehicle_gui.cpp
changeset 7642 535e5d93ffb1
parent 7563 305b8bdd94da
child 7759 eb8f1b5b2883
equal deleted inserted replaced
7641:3a75903fd892 7642:535e5d93ffb1
   206 		for (CargoID cid = 0; cid < NUM_CARGO && num_lines < max_lines; cid++) {
   206 		for (CargoID cid = 0; cid < NUM_CARGO && num_lines < max_lines; cid++) {
   207 			/* Skip cargo type if it's not listed */
   207 			/* Skip cargo type if it's not listed */
   208 			if (!HASBIT(cmask, cid)) continue;
   208 			if (!HASBIT(cmask, cid)) continue;
   209 
   209 
   210 			/* Check the vehicle's callback mask for cargo suffixes */
   210 			/* Check the vehicle's callback mask for cargo suffixes */
   211 			if (HASBIT(callbackmask, CBM_CARGO_SUFFIX)) {
   211 			if (HASBIT(callbackmask, CBM_VEHICLE_CARGO_SUFFIX)) {
   212 				/* Make a note of the original cargo type. It has to be
   212 				/* Make a note of the original cargo type. It has to be
   213 				 * changed to test the cargo & subtype... */
   213 				 * changed to test the cargo & subtype... */
   214 				CargoID temp_cargo = u->cargo_type;
   214 				CargoID temp_cargo = u->cargo_type;
   215 				byte temp_subtype  = u->cargo_subtype;
   215 				byte temp_subtype  = u->cargo_subtype;
   216 				byte refit_cyc;
   216 				byte refit_cyc;