summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applets/profile_select.cpp
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2019-04-25 14:57:17 +0200
committerZach Hilman <zachhilman@gmail.com>2019-04-25 14:57:23 +0200
commit4e462d1fd7cbd127eb64de084a97167e586957d3 (patch)
treeffeb82921ca64169f06890b85851cb7049871512 /src/core/hle/service/am/applets/profile_select.cpp
parentprofile_select: Port Service::Account::UUID to Common::UUID (diff)
downloadyuzu-4e462d1fd7cbd127eb64de084a97167e586957d3.tar
yuzu-4e462d1fd7cbd127eb64de084a97167e586957d3.tar.gz
yuzu-4e462d1fd7cbd127eb64de084a97167e586957d3.tar.bz2
yuzu-4e462d1fd7cbd127eb64de084a97167e586957d3.tar.lz
yuzu-4e462d1fd7cbd127eb64de084a97167e586957d3.tar.xz
yuzu-4e462d1fd7cbd127eb64de084a97167e586957d3.tar.zst
yuzu-4e462d1fd7cbd127eb64de084a97167e586957d3.zip
Diffstat (limited to 'src/core/hle/service/am/applets/profile_select.cpp')
-rw-r--r--src/core/hle/service/am/applets/profile_select.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/am/applets/profile_select.cpp b/src/core/hle/service/am/applets/profile_select.cpp
index 3c184859d..57b5419e8 100644
--- a/src/core/hle/service/am/applets/profile_select.cpp
+++ b/src/core/hle/service/am/applets/profile_select.cpp
@@ -53,7 +53,7 @@ void ProfileSelect::Execute() {
return;
}
- frontend.SelectProfile([this](std::optional<Account::UUID> uuid) { SelectionComplete(uuid); });
+ frontend.SelectProfile([this](std::optional<Common::UUID> uuid) { SelectionComplete(uuid); });
}
void ProfileSelect::SelectionComplete(std::optional<Common::UUID> uuid) {