mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-18 20:19:11 +00:00
(svn r10208) -Codechange: replace int32 with Money where appropriate.
This commit is contained in:
@@ -3353,9 +3353,9 @@ static void CheckIfTrainNeedsService(Vehicle *v)
|
||||
InvalidateWindowWidget(WC_VEHICLE_VIEW, v->index, STATUS_BAR);
|
||||
}
|
||||
|
||||
int32 GetTrainRunningCost(const Vehicle *v)
|
||||
Money GetTrainRunningCost(const Vehicle *v)
|
||||
{
|
||||
int32 cost = 0;
|
||||
Money cost = 0;
|
||||
|
||||
do {
|
||||
const RailVehicleInfo *rvi = RailVehInfo(v->engine_type);
|
||||
|
Reference in New Issue
Block a user