diff --git a/src/openrct2/platform/Shared.cpp b/src/openrct2/platform/Shared.cpp index 358709a283..aa6c27dd3f 100644 --- a/src/openrct2/platform/Shared.cpp +++ b/src/openrct2/platform/Shared.cpp @@ -94,7 +94,8 @@ namespace Platform bool FileExists(const std::string path) { - fs::path file = path; + fs::path file = fs::u8path(path); + log_verbose("Checking if file exists: %s", path.c_str()); return fs::exists(file); } } // namespace Platform