mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 04:47:53 +00:00
Revert "Merge pull request #5179 from ReinUsesLisp/fs-path"
This reverts commit4e94d0d53a
, reversing changes made to6d6115475b
.
This commit is contained in:
parent
ac3ec5ed13
commit
0195038c07
1 changed files with 1 additions and 1 deletions
|
@ -239,7 +239,7 @@ bool ForeachDirectoryEntry(u64* num_entries_out, const std::string& directory,
|
||||||
}
|
}
|
||||||
// windows loop
|
// windows loop
|
||||||
do {
|
do {
|
||||||
const std::string virtual_name = std::filesystem::path(ffd.cFileName).string();
|
const std::string virtual_name(Common::UTF16ToUTF8(ffd.cFileName));
|
||||||
#else
|
#else
|
||||||
DIR* dirp = opendir(directory.c_str());
|
DIR* dirp = opendir(directory.c_str());
|
||||||
if (!dirp)
|
if (!dirp)
|
||||||
|
|
Loading…
Reference in a new issue