src/cargotype.cpp
changeset 8427 143b0be22af1
parent 7136 5f788c5c8aad
child 8609 8c0c3e9dd6a0
--- a/src/cargotype.cpp	Tue Nov 20 12:57:24 2007 +0000
+++ b/src/cargotype.cpp	Tue Nov 20 13:35:54 2007 +0000
@@ -37,7 +37,7 @@
 		if (cl < lengthof(_default_cargo)) {
 			/* Copy the indexed cargo */
 			_cargo[i] = _default_cargo[cl];
-			SETBIT(_cargo_mask, i);
+			SetBit(_cargo_mask, i);
 			continue;
 		}
 
@@ -48,7 +48,7 @@
 				_cargo[i] = _default_cargo[j];
 
 				/* Populate the available cargo mask */
-				SETBIT(_cargo_mask, i);
+				SetBit(_cargo_mask, i);
 				break;
 			}
 		}