Fix #3171: Guests entering from the corner of the tile in Amity Airfield

This commit is contained in:
Michael Steenbeek 2018-01-02 16:05:39 +01:00
parent 3d1deb26ce
commit c5e966292b
2 changed files with 6 additions and 0 deletions

View file

@ -40,6 +40,7 @@
- Fix: [#1833, #4937, #6138] 'Too low!' warning when building rides and shops on the lowest land level (original bug).
- Fix: [#2254] Edge scrolling horizontally now has the same speed as vertical edge scrolling.
- Fix: [#2607] Rain rendered incorrectly in additional viewport.
- Fix: [#3171] Guests entering from the corner of the tile in Amity Airfield (original bug).
- Fix: [#4760] Asia - Great Wall of China and South America - Rio Carnival have incorrect guest entry points (original bug).
- Fix: [#4991] Inverted helices can be built on the Lay Down RC, but are not drawn.
- Fix: [#5190] Cannot build Wild Mouse - Flying Dutchman Gold Mine.

View file

@ -735,6 +735,11 @@ public:
}
else
{
// Amity Airfield has peeps entering from the corner of the tile, instead of the middle.
if (String::Equals(_s6.scenario_filename, "Amity Airfield.SC6"))
_s6.peep_spawns[0].y += 16;
for (size_t i = 0; i < RCT12_MAX_PEEP_SPAWNS; i++)
{
gPeepSpawns[i] = _s6.peep_spawns[i];