mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-10-31 20:37:52 +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
|
||||
do {
|
||||
const std::string virtual_name = std::filesystem::path(ffd.cFileName).string();
|
||||
const std::string virtual_name(Common::UTF16ToUTF8(ffd.cFileName));
|
||||
#else
|
||||
DIR* dirp = opendir(directory.c_str());
|
||||
if (!dirp)
|
||||
|
|
Loading…
Reference in a new issue