From 7518cbb0c09c2260c6b888c7d97910f1648f9648 Mon Sep 17 00:00:00 2001 From: Gymnasiast Date: Sat, 30 Aug 2025 22:14:06 +0200 Subject: [PATCH] Small cleanup --- src/openrct2-ui/interface/Dropdown.h | 1 - src/openrct2-ui/windows/Ride.cpp | 2 -- 2 files changed, 3 deletions(-) diff --git a/src/openrct2-ui/interface/Dropdown.h b/src/openrct2-ui/interface/Dropdown.h index 83e3af15d6..12edad6eab 100644 --- a/src/openrct2-ui/interface/Dropdown.h +++ b/src/openrct2-ui/interface/Dropdown.h @@ -15,7 +15,6 @@ #include #include #include -#include struct ImageId; class Formatter; diff --git a/src/openrct2-ui/windows/Ride.cpp b/src/openrct2-ui/windows/Ride.cpp index 23e202362e..577dda0e4e 100644 --- a/src/openrct2-ui/windows/Ride.cpp +++ b/src/openrct2-ui/windows/Ride.cpp @@ -1771,7 +1771,6 @@ namespace OpenRCT2::Ui::Windows Formatter ft; ft.Add(i + 1); gDropdown.items[currentItem] = Dropdown::MenuLabel(name, ft); - gDropdown.items[currentItem].value = (1 << 16) | i; if (TrainMustBeHidden(*ride, i)) { @@ -1787,7 +1786,6 @@ namespace OpenRCT2::Ui::Windows Formatter ft; ft.Add(i + 1); gDropdown.items[currentItem] = Dropdown::MenuLabel(name, ft); - gDropdown.items[currentItem].value = (1 << 16) | i; currentItem++; }