summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/am.cpp
diff options
context:
space:
mode:
authorAmeer J <52414509+ameerj@users.noreply.github.com>2021-07-08 20:46:31 +0200
committerGitHub <noreply@github.com>2021-07-08 20:46:31 +0200
commit5edc96f4a47bff64cfd97f0c91e42b56ab58b2d7 (patch)
treebd1e570a3f0594557e28516b0974aa07f67ad616 /src/core/hle/service/am/am.cpp
parentOut of bound blit (#6531) (diff)
parentgeneral: Code formatting improvements (diff)
downloadyuzu-5edc96f4a47bff64cfd97f0c91e42b56ab58b2d7.tar
yuzu-5edc96f4a47bff64cfd97f0c91e42b56ab58b2d7.tar.gz
yuzu-5edc96f4a47bff64cfd97f0c91e42b56ab58b2d7.tar.bz2
yuzu-5edc96f4a47bff64cfd97f0c91e42b56ab58b2d7.tar.lz
yuzu-5edc96f4a47bff64cfd97f0c91e42b56ab58b2d7.tar.xz
yuzu-5edc96f4a47bff64cfd97f0c91e42b56ab58b2d7.tar.zst
yuzu-5edc96f4a47bff64cfd97f0c91e42b56ab58b2d7.zip
Diffstat (limited to '')
-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 b578153d3..23ebc1138 100644
--- a/src/core/hle/service/am/am.cpp
+++ b/src/core/hle/service/am/am.cpp
@@ -1443,7 +1443,7 @@ void IApplicationFunctions::PopLaunchParameter(Kernel::HLERequestContext& ctx) {
params.is_account_selected = 1;
Account::ProfileManager profile_manager{};
- const auto uuid = profile_manager.GetUser(Settings::values.current_user);
+ const auto uuid = profile_manager.GetUser(static_cast<s32>(Settings::values.current_user));
ASSERT(uuid);
params.current_user = uuid->uuid;