Skip to content

Commit ce34b95

Browse files
committed
Fix game path not respecting utf8 encoding
1 parent 8bb7ce0 commit ce34b95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ void CemuCommonInit()
139139
// init title list
140140
CafeTitleList::Initialize(ActiveSettings::GetUserDataPath("title_list_cache.xml"));
141141
for (auto& it : GetConfig().game_paths)
142-
CafeTitleList::AddScanPath(it);
142+
CafeTitleList::AddScanPath(_utf8ToPath(it));
143143
fs::path mlcPath = ActiveSettings::GetMlcPath();
144144
if (!mlcPath.empty())
145145
CafeTitleList::SetMLCPath(mlcPath);

0 commit comments

Comments
 (0)