[MapRotation] Remove tolower (not needed)
This commit is contained in:
parent
0393953ded
commit
77c25bc11f
@ -63,8 +63,7 @@ namespace Components
|
||||
return std::ranges::any_of(this->rotationEntries_,
|
||||
[&](const auto& entry)
|
||||
{
|
||||
return entry.first == Utils::String::ToLower(key) &&
|
||||
entry.second == Utils::String::ToLower(value);
|
||||
return entry.first == key && entry.second == value;
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user