Fix compile error in EditorObjectSelection.cpp

This commit is contained in:
Michael Steenbeek 2018-12-16 17:10:45 +01:00 committed by GitHub
parent 6031a9bc27
commit e2a91e55e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}