summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applets/applet_profile_select.h
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2022-02-05 18:29:09 +0100
committerMorph <39850852+Morph1984@users.noreply.github.com>2022-02-05 19:56:21 +0100
commitdfe11d72e3eb14dee718b7fa67a673514d199f20 (patch)
treef21885d513c2df4bb409e17016e0996815e37569 /src/core/hle/service/am/applets/applet_profile_select.h
parentcommon: uuid: Add AsU128() (diff)
downloadyuzu-dfe11d72e3eb14dee718b7fa67a673514d199f20.tar
yuzu-dfe11d72e3eb14dee718b7fa67a673514d199f20.tar.gz
yuzu-dfe11d72e3eb14dee718b7fa67a673514d199f20.tar.bz2
yuzu-dfe11d72e3eb14dee718b7fa67a673514d199f20.tar.lz
yuzu-dfe11d72e3eb14dee718b7fa67a673514d199f20.tar.xz
yuzu-dfe11d72e3eb14dee718b7fa67a673514d199f20.tar.zst
yuzu-dfe11d72e3eb14dee718b7fa67a673514d199f20.zip
Diffstat (limited to 'src/core/hle/service/am/applets/applet_profile_select.h')
-rw-r--r--src/core/hle/service/am/applets/applet_profile_select.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/am/applets/applet_profile_select.h b/src/core/hle/service/am/applets/applet_profile_select.h
index 8fb76e6c4..c5c506c41 100644
--- a/src/core/hle/service/am/applets/applet_profile_select.h
+++ b/src/core/hle/service/am/applets/applet_profile_select.h
@@ -7,7 +7,7 @@
#include <vector>
#include "common/common_funcs.h"
-#include "common/uuid.h"
+#include "common/new_uuid.h"
#include "core/hle/result.h"
#include "core/hle/service/am/applets/applets.h"
@@ -27,7 +27,7 @@ static_assert(sizeof(UserSelectionConfig) == 0xA0, "UserSelectionConfig has inco
struct UserSelectionOutput {
u64 result;
- u128 uuid_selected;
+ Common::NewUUID uuid_selected;
};
static_assert(sizeof(UserSelectionOutput) == 0x18, "UserSelectionOutput has incorrect size.");
@@ -44,7 +44,7 @@ public:
void ExecuteInteractive() override;
void Execute() override;
- void SelectionComplete(std::optional<Common::UUID> uuid);
+ void SelectionComplete(std::optional<Common::NewUUID> uuid);
private:
const Core::Frontend::ProfileSelectApplet& frontend;