Browse Source

Revert "Merge pull request #5179 from ReinUsesLisp/fs-path"

This reverts commit be3622e550, reversing
changes made to 586d5a72e1.
nce_cpp
Morph 5 years ago
parent
commit
4b2d4ac412
  1. 2
      src/common/file_util.cpp

2
src/common/file_util.cpp

@ -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…
Cancel
Save