1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-28 17:24:47 +01:00

Fix Android

This commit is contained in:
Gymnasiast
2022-01-08 15:42:27 +01:00
parent 919c73d030
commit 10301507a9
11 changed files with 20 additions and 13 deletions

View File

@@ -115,7 +115,7 @@ namespace Platform
bool FileExists(std::string_view path)
{
fs::path file = fs::u8path(path);
fs::path file = u8path(path);
log_verbose("Checking if file exists: %s", std::string(path).c_str());
return fs::exists(file);
}