diff --git a/distribution/changelog.txt b/distribution/changelog.txt index e035f98f45..743d60a742 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -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) diff --git a/src/openrct2/rct1/RCT1.h b/src/openrct2/rct1/RCT1.h index 54a8b582dd..03febc080e 100644 --- a/src/openrct2/rct1/RCT1.h +++ b/src/openrct2/rct1/RCT1.h @@ -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 diff --git a/src/openrct2/rct1/S4Importer.cpp b/src/openrct2/rct1/S4Importer.cpp index 66c2126407..7a654a0044 100644 --- a/src/openrct2/rct1/S4Importer.cpp +++ b/src/openrct2/rct1/S4Importer.cpp @@ -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;