1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-24 00:03:11 +01:00

Exclude the 'All' tab when searching for scenery group

This commit is contained in:
ζeh Matt
2023-06-17 16:40:57 +03:00
parent ed875a1273
commit ffa65cea0e

View File

@@ -1108,6 +1108,11 @@ private:
for (size_t i = 0; i < _tabEntries.size(); i++)
{
const auto& tabInfo = _tabEntries[i];
if (tabInfo.IsAll())
{
// The scenery will be always added here so exclude this one.
continue;
}
if (tabInfo.Contains(scenery))
{
return i;