From 64bafcbe182ef539a31ffed9bd1f19ca0f7ae62a Mon Sep 17 00:00:00 2001 From: rubidium Date: Mon, 14 Sep 2009 12:22:57 +0000 Subject: (svn r17534) -Codechange: unify the naming of callback masks/flags --- src/ship_cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ship_cmd.cpp') diff --git a/src/ship_cmd.cpp b/src/ship_cmd.cpp index a88d4f429..b612c6ec9 100644 --- a/src/ship_cmd.cpp +++ b/src/ship_cmd.cpp @@ -918,7 +918,7 @@ CommandCost CmdRefitShip(TileIndex tile, DoCommandFlag flags, uint32 p1, uint32 if (new_cid >= NUM_CARGO || !CanRefitTo(v->engine_type, new_cid)) return CMD_ERROR; /* Check the refit capacity callback */ - if (HasBit(EngInfo(v->engine_type)->callbackmask, CBM_VEHICLE_REFIT_CAPACITY)) { + if (HasBit(EngInfo(v->engine_type)->callback_mask, CBM_VEHICLE_REFIT_CAPACITY)) { /* Back up the existing cargo type */ CargoID temp_cid = v->cargo_type; byte temp_subtype = v->cargo_subtype; -- cgit v1.2.3-54-g00ecf