mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-22 10:21:57 -05:00
This commit is contained in:
parent
efada44157
commit
7337e9d4a3
2 changed files with 5 additions and 2 deletions
|
@ -13,6 +13,7 @@
|
|||
- Feature: [#13614] Add terrain surfaces from RollerCoaster Tycoon 1.
|
||||
- Change: [#13346] [Plugin] Renamed FootpathScenery to FootpathAddition, fix typos.
|
||||
- Fix: [#12895] Mechanics are called to repair rides that have already been fixed.
|
||||
- Fix: [#13102] Underflow on height chart (Ride measurements).
|
||||
- Fix: [#13257] Rides that are exactly the minimum objective length are not counted.
|
||||
- Fix: [#13334] Uninitialised variables in CustomTabDesc.
|
||||
- Fix: [#13342] Rename tabChange to onTabChange in WindowDesc interface.
|
||||
|
|
|
@ -768,16 +768,18 @@ namespace OpenRCT2
|
|||
case FormatToken::Sprite:
|
||||
anyArgs.push_back(ReadFromArgs<int32_t>(args));
|
||||
break;
|
||||
case FormatToken::Comma16:
|
||||
case FormatToken::UInt16:
|
||||
case FormatToken::MonthYear:
|
||||
case FormatToken::Month:
|
||||
case FormatToken::Velocity:
|
||||
case FormatToken::DurationShort:
|
||||
case FormatToken::DurationLong:
|
||||
anyArgs.push_back(ReadFromArgs<uint16_t>(args));
|
||||
break;
|
||||
case FormatToken::Comma16:
|
||||
case FormatToken::Length:
|
||||
case FormatToken::Comma1dp16:
|
||||
anyArgs.push_back(ReadFromArgs<uint16_t>(args));
|
||||
anyArgs.push_back(ReadFromArgs<int16_t>(args));
|
||||
break;
|
||||
case FormatToken::StringId:
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue