mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-31 18:55:23 +01:00
Fix compile error in EditorObjectSelection.cpp
This commit is contained in:
committed by
GitHub
parent
6031a9bc27
commit
e2a91e55e5
@@ -1473,7 +1473,7 @@ static void filter_update_counts()
|
||||
if (!_FILTER_ALL || strlen(_filter_string) > 0)
|
||||
{
|
||||
const auto& selectionFlags = _objectSelectionFlags;
|
||||
for (int32_t i = 0; i < 11; i++)
|
||||
for (size_t i = 0; i < std::size(ObjectSelectionPages); i++)
|
||||
{
|
||||
_filter_object_counts[i] = 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user