From 4b2d4ac4127eb2d6b0820b0fe0de09b983259e71 Mon Sep 17 00:00:00 2001
From: Morph <39850852+Morph1984@users.noreply.github.com>
Date: Fri, 11 Dec 2020 20:21:46 -0500
Subject: [PATCH] Revert "Merge pull request #5179 from ReinUsesLisp/fs-path"

This reverts commit be3622e5503832367a9b22baa67c0f92cc7a98ab, reversing
changes made to 586d5a72e1e151b9767b93be2c4b8b636acdf00f.
---
 src/common/file_util.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp
index a286b93412..7752c04213 100644
--- a/src/common/file_util.cpp
+++ b/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)