Skip to content

Commit

Permalink
Fix game path not respecting utf8 encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
Exzap committed Sep 30, 2023
1 parent 8bb7ce0 commit ce34b95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ void CemuCommonInit()
// init title list
CafeTitleList::Initialize(ActiveSettings::GetUserDataPath("title_list_cache.xml"));
for (auto& it : GetConfig().game_paths)
CafeTitleList::AddScanPath(it);
CafeTitleList::AddScanPath(_utf8ToPath(it));
fs::path mlcPath = ActiveSettings::GetMlcPath();
if (!mlcPath.empty())
CafeTitleList::SetMLCPath(mlcPath);
Expand Down

0 comments on commit ce34b95

Please sign in to comment.