diff --git a/src/openrct2/core/Path.cpp b/src/openrct2/core/Path.cpp index 77e4f50ae0..4f99f95055 100644 --- a/src/openrct2/core/Path.cpp +++ b/src/openrct2/core/Path.cpp @@ -108,7 +108,7 @@ namespace Path bool Equals(u8string_view a, u8string_view b) { - return Platform::ShouldIgnoreCase() ? String::IEquals(a,b) : String::Equals(a, b); + return Platform::ShouldIgnoreCase() ? String::IEquals(a, b) : String::Equals(a, b); } u8string ResolveCasing(u8string_view path)