aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/am/applets
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-09-24 08:02:11 -0400
committerGitHub <noreply@github.com>2021-09-24 08:02:11 -0400
commitc8512839d78249a441a354a4072779c982fd4305 (patch)
tree7fa0f1fa088cc3c96903381967542317b5f914d7 /src/core/hle/service/am/applets
parent4baef7905e88fae7a3486d24bf7a111ad4d30b8a (diff)
parent091e1411422c62ef358c8d3750a92735858b1a61 (diff)
Merge pull request #7069 from lioncash/uuid
common/uuid: Add validity checking functions to interface
Diffstat (limited to 'src/core/hle/service/am/applets')
-rw-r--r--src/core/hle/service/am/applets/applet_profile_select.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/am/applets/applet_profile_select.cpp b/src/core/hle/service/am/applets/applet_profile_select.cpp
index bdc21778e..a6e891944 100644
--- a/src/core/hle/service/am/applets/applet_profile_select.cpp
+++ b/src/core/hle/service/am/applets/applet_profile_select.cpp
@@ -60,7 +60,7 @@ void ProfileSelect::Execute() {
void ProfileSelect::SelectionComplete(std::optional<Common::UUID> uuid) {
UserSelectionOutput output{};
- if (uuid.has_value() && uuid->uuid != Common::INVALID_UUID) {
+ if (uuid.has_value() && uuid->IsValid()) {
output.result = 0;
output.uuid_selected = uuid->uuid;
} else {