summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-10-24 16:21:35 +0200
committerLioncash <mathew1800@gmail.com>2018-10-24 17:06:52 +0200
commit4a31f99a0214ac7ee04d61c8934823e284db5e63 (patch)
treecc5adf1cf40dd7d82ae1b0052128ceaaf7495d89 /src/core/hle/service/am
parentMerge pull request #1468 from DarkLordZach/profile-manager-ui (diff)
downloadyuzu-4a31f99a0214ac7ee04d61c8934823e284db5e63.tar
yuzu-4a31f99a0214ac7ee04d61c8934823e284db5e63.tar.gz
yuzu-4a31f99a0214ac7ee04d61c8934823e284db5e63.tar.bz2
yuzu-4a31f99a0214ac7ee04d61c8934823e284db5e63.tar.lz
yuzu-4a31f99a0214ac7ee04d61c8934823e284db5e63.tar.xz
yuzu-4a31f99a0214ac7ee04d61c8934823e284db5e63.tar.zst
yuzu-4a31f99a0214ac7ee04d61c8934823e284db5e63.zip
Diffstat (limited to 'src/core/hle/service/am')
-rw-r--r--src/core/hle/service/am/am.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp
index 4ed66d817..59aafd616 100644
--- a/src/core/hle/service/am/am.cpp
+++ b/src/core/hle/service/am/am.cpp
@@ -743,7 +743,7 @@ void IApplicationFunctions::PopLaunchParameter(Kernel::HLERequestContext& ctx) {
Account::ProfileManager profile_manager{};
const auto uuid = profile_manager.GetUser(Settings::values.current_user);
- ASSERT(uuid != boost::none);
+ ASSERT(uuid != std::nullopt);
params.current_user = uuid->uuid;
IPC::ResponseBuilder rb{ctx, 2, 0, 1};