File diff r6954:2cf27dc9d438 → r6955:42f59093f6f9
src/openttd.h
Show inline comments
 
@@ -66,13 +66,13 @@ typedef uint16 DepotID;
 
typedef uint16 WaypointID;
 
typedef uint16 OrderID;
 
typedef uint16 SignID;
 
typedef uint16 GroupID;
 
typedef uint16 EngineRenewID;
 
typedef uint16 DestinationID;
 
typedef int32 Money;
 
typedef int64 Money;
 

	
 
/* DestinationID must be at least as large as every these below, because it can
 
 * be any of them
 
 */
 
assert_compile(sizeof(DestinationID) == sizeof(DepotID));
 
assert_compile(sizeof(DestinationID) == sizeof(WaypointID));
 
@@ -383,14 +383,12 @@ public:
 

	
 
	/**
 
	 * Creates a command return value with the given start cost
 
	 * @param cst the initial cost of this command
 
	 */
 
	CommandCost(Money cst) : cost(cst), message(INVALID_STRING_ID), success(true) {}
 
	/** "Hack" to make everything compile nicely, not needed when cost is int64 */
 
	CommandCost(uint cst) : cost(cst), message(INVALID_STRING_ID), success(true) {}
 

	
 
	/**
 
	 * Adds the cost of the given command return value to this cost.
 
	 * Also takes a possible error message when it is set.
 
	 * @param ret the command to add the cost of.
 
	 * @return this class.