From 38c57251b35bc85679a8dadf1cb61a42bd957d80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=B6eh=20Matt?= <5415177+ZehMatt@users.noreply.github.com> Date: Thu, 6 Jul 2023 00:58:22 +0300 Subject: [PATCH] Fix code formatting --- src/openrct2/core/Path.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)