diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-02-05 12:29:09 -0500 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-02-05 13:56:21 -0500 |
commit | dfe11d72e3eb14dee718b7fa67a673514d199f20 (patch) | |
tree | f21885d513c2df4bb409e17016e0996815e37569 /src/yuzu/main.cpp | |
parent | d94dcaefa020dcfc89d655dcf5aa8dad998e0bf2 (diff) |
profile: Migrate to the new UUID implementation
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r-- | src/yuzu/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 556d2cdb38..c89909737c 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -1688,7 +1688,7 @@ void GMainWindow::OnGameListOpenFolder(u64 program_id, GameListOpenTarget target const auto user_save_data_path = FileSys::SaveDataFactory::GetFullPath( *system, FileSys::SaveDataSpaceId::NandUser, FileSys::SaveDataType::SaveData, - program_id, user_id->uuid, 0); + program_id, user_id->AsU128(), 0); path = Common::FS::ConcatPathSafe(nand_dir, user_save_data_path); } else { |