1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-22 06:23:04 +01:00

Use u8 strings when dealing with file paths

This commit is contained in:
Hielke Morsink
2022-02-27 22:23:35 +01:00
parent 55c71b0c74
commit 6ba0a3bd49
27 changed files with 115 additions and 120 deletions

View File

@@ -325,7 +325,7 @@ std::string ImageTable::FindLegacyObject(const std::string& name)
if (!File::Exists(objectPath))
{
// Search recursively for any file with the target name (case insensitive)
auto filter = Path::Combine(objectsPath, "*.dat;*.pob");
auto filter = Path::Combine(objectsPath, u8"*.dat;*.pob");
auto scanner = Path::ScanDirectory(filter, true);
while (scanner->Next())
{