mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-29 09:44:52 +01:00
Fix #14093: Replace MONEY macro with user defined literal
This commit is contained in:
@@ -85,7 +85,7 @@ GameActions::Result FootpathAdditionRemoveAction::Query() const
|
||||
}
|
||||
auto res = GameActions::Result();
|
||||
res.Position = _loc;
|
||||
res.Cost = MONEY(0, 0);
|
||||
res.Cost = 0.00_GBP;
|
||||
return res;
|
||||
}
|
||||
|
||||
@@ -110,6 +110,6 @@ GameActions::Result FootpathAdditionRemoveAction::Execute() const
|
||||
|
||||
auto res = GameActions::Result();
|
||||
res.Position = _loc;
|
||||
res.Cost = MONEY(0, 0);
|
||||
res.Cost = 0.00_GBP;
|
||||
return res;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user