Fix small red gardens getting imported incorrectly from S4 (#11215)

This commit is contained in:
Michael Steenbeek 2020-04-03 19:55:39 +02:00 committed by GitHub
parent 15a532725a
commit 87dd126e2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 0 deletions

View File

@ -11,6 +11,7 @@
- Fix: [#11027] Third color on walls becomes black when saving.
- Fix: [#11063] Scrolling position persists when switching tabs in the scenery window.
- Fix: [#11126] Cannot place Frightmare track design.
- Fix: Small red gardens in RCT1 saves are imported in the wrong colour.
- Improved: [#11157] Slimmer virtual floor lines.
0.2.5 (2020-03-24)

View File

@ -1220,6 +1220,8 @@ enum
RCT1_SCENERY_GEOMETRIC_SCULPTURE_3 = 168, // TGE3
RCT1_SCENERY_GEOMETRIC_SCULPTURE_4 = 170, // TGE4
RCT1_SCENERY_GEOMETRIC_SCULPTURE_5 = 171, // TGE5
RCT1_SCENERY_SMALL_RED_GARDENS = 176, // TG19
};
enum

View File

@ -2149,6 +2149,10 @@ private:
case RCT1_SCENERY_TULIPS_2:
dst2->SetPrimaryColour(COLOUR_BRIGHT_RED);
dst2->SetSecondaryColour(COLOUR_YELLOW);
break;
case RCT1_SCENERY_SMALL_RED_GARDENS:
dst2->SetPrimaryColour(COLOUR_BRIGHT_RED);
break;
}
break;