1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-10 09:32:29 +01:00

Small cleanup

This commit is contained in:
Gymnasiast
2025-08-30 22:14:06 +02:00
parent ac85de1e44
commit 7518cbb0c0
2 changed files with 0 additions and 3 deletions

View File

@@ -15,7 +15,6 @@
#include <openrct2/core/StringTypes.h>
#include <openrct2/interface/Window.h>
#include <span>
#include <variant>
struct ImageId;
class Formatter;

View File

@@ -1771,7 +1771,6 @@ namespace OpenRCT2::Ui::Windows
Formatter ft;
ft.Add<uint16_t>(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<uint16_t>(i + 1);
gDropdown.items[currentItem] = Dropdown::MenuLabel(name, ft);
gDropdown.items[currentItem].value = (1 << 16) | i;
currentItem++;
}