diff --git a/resources/g2/sprites.json b/resources/g2/sprites.json index d78e14f195..add34824c1 100644 --- a/resources/g2/sprites.json +++ b/resources/g2/sprites.json @@ -199,7 +199,9 @@ }, { "path": "icons/infinity.png", - "palette": "keep" + "palette": "keep", + "x": 2, + "y": 6 }, { "path": "tool/normal_selection_6x6.png", diff --git a/src/openrct2-ui/windows/EditorObjectSelection.cpp b/src/openrct2-ui/windows/EditorObjectSelection.cpp index 9b5629c760..abdf07e022 100644 --- a/src/openrct2-ui/windows/EditorObjectSelection.cpp +++ b/src/openrct2-ui/windows/EditorObjectSelection.cpp @@ -1006,7 +1006,7 @@ static std::vector _window_editor_object_selection_widgets = { } const int32_t ride_tabs[] = { - SPR_TAB_RIDE_16, SPR_TAB_RIDES_TRANSPORT_0, SPR_TAB_RIDES_GENTLE_0, SPR_TAB_RIDES_ROLLER_COASTERS_0, + SPR_G2_INFINITY, SPR_TAB_RIDES_TRANSPORT_0, SPR_TAB_RIDES_GENTLE_0, SPR_TAB_RIDES_ROLLER_COASTERS_0, SPR_TAB_RIDES_THRILL_0, SPR_TAB_RIDES_WATER_0, SPR_TAB_RIDES_SHOP_0, SPR_TAB_FINANCES_RESEARCH_0, }; const int32_t ThrillRidesTabAnimationSequence[] = { diff --git a/src/openrct2-ui/windows/Scenery.cpp b/src/openrct2-ui/windows/Scenery.cpp index 638280aafa..f6eb5cd04a 100644 --- a/src/openrct2-ui/windows/Scenery.cpp +++ b/src/openrct2-ui/windows/Scenery.cpp @@ -1516,7 +1516,7 @@ static Widget WindowSceneryBaseWidgets[] = { if (_tabEntries[tabIndex].IsAll()) { auto imageId = ImageId(SPR_G2_INFINITY, FilterPaletteID::PaletteNull); - GfxDrawSprite(dpi, imageId, offset + widgetCoordsXY + ScreenCoordsXY(2, 6)); + GfxDrawSprite(dpi, imageId, offset + widgetCoordsXY); } } }