diff --git a/resources/g2/icons/map_gen_terrain_tab.png b/resources/g2/icons/map_gen_terrain_tab.png new file mode 100644 index 0000000000..5d4243e982 Binary files /dev/null and b/resources/g2/icons/map_gen_terrain_tab.png differ diff --git a/resources/g2/sprites.json b/resources/g2/sprites.json index fcfc613499..b99c597d75 100644 --- a/resources/g2/sprites.json +++ b/resources/g2/sprites.json @@ -307,6 +307,11 @@ "x": 2, "y": 2 }, + { + "path": "icons/map_gen_terrain_tab.png", + "x": 1, + "y": 10 + }, { "path": "icons/map_gen_button.png" }, diff --git a/src/openrct2-ui/windows/MapGen.cpp b/src/openrct2-ui/windows/MapGen.cpp index 691dae889c..1469c1264a 100644 --- a/src/openrct2-ui/windows/MapGen.cpp +++ b/src/openrct2-ui/windows/MapGen.cpp @@ -364,9 +364,9 @@ namespace OpenRCT2::Ui::Windows void DrawTabImages(DrawPixelInfo& dpi) { DrawTabImage(dpi, WINDOW_MAPGEN_PAGE_BASE, SPR_TAB_GEARS_0); - DrawTabImage(dpi, WINDOW_MAPGEN_PAGE_TERRAIN, SPR_G2_TAB_LAND); + DrawTabImage(dpi, WINDOW_MAPGEN_PAGE_TERRAIN, SPR_G2_MAP_GEN_TERRAIN_TAB); DrawTabImage(dpi, WINDOW_MAPGEN_PAGE_WATER, SPR_TAB_WATER); - DrawTabImage(dpi, WINDOW_MAPGEN_PAGE_FORESTS, SPR_G2_TAB_TREE); + DrawTabImage(dpi, WINDOW_MAPGEN_PAGE_FORESTS, SPR_TAB_SCENERY_TREES); } void ChangeMapSize(int32_t sizeOffset) diff --git a/src/openrct2/sprites.h b/src/openrct2/sprites.h index 243e2999e2..1c889f1432 100644 --- a/src/openrct2/sprites.h +++ b/src/openrct2/sprites.h @@ -969,6 +969,7 @@ enum : ImageIndex SPR_G2_ARROW_UP, SPR_G2_ARROW_DOWN, SPR_G2_RELOAD, + SPR_G2_MAP_GEN_TERRAIN_TAB, SPR_G2_MAP_GEN_BTN, SPR_G2_PEEP_SPAWN,