Core/Win32: Use native string instead of generic in Windows code

This commit is contained in:
SirLynix 2024-01-22 23:08:31 +01:00
parent 9caaff2898
commit 05ee3d7a55
1 changed files with 1 additions and 1 deletions

View File

@ -9,6 +9,6 @@ namespace Nz::PlatformImpl
if constexpr (ArePathWide)
return path.native();
else
return path.generic_wstring();
return path.wstring();
}
}