summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/acc/acc.cpp
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-11-04 07:57:13 +0100
committerMorph <39850852+Morph1984@users.noreply.github.com>2021-11-04 07:57:13 +0100
commitf2988ecabcbab4bffd416f76f03806c874d32d1c (patch)
treedeea1ad4148e9189e6c53f310e26694a2669e0e8 /src/core/hle/service/acc/acc.cpp
parentMerge pull request #7278 from Morph1984/svc-num-handles (diff)
downloadyuzu-f2988ecabcbab4bffd416f76f03806c874d32d1c.tar
yuzu-f2988ecabcbab4bffd416f76f03806c874d32d1c.tar.gz
yuzu-f2988ecabcbab4bffd416f76f03806c874d32d1c.tar.bz2
yuzu-f2988ecabcbab4bffd416f76f03806c874d32d1c.tar.lz
yuzu-f2988ecabcbab4bffd416f76f03806c874d32d1c.tar.xz
yuzu-f2988ecabcbab4bffd416f76f03806c874d32d1c.tar.zst
yuzu-f2988ecabcbab4bffd416f76f03806c874d32d1c.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/acc/acc.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/hle/service/acc/acc.cpp b/src/core/hle/service/acc/acc.cpp
index 689b36056..0b6097d95 100644
--- a/src/core/hle/service/acc/acc.cpp
+++ b/src/core/hle/service/acc/acc.cpp
@@ -826,6 +826,13 @@ void Module::Interface::IsUserAccountSwitchLocked(Kernel::HLERequestContext& ctx
rb.Push(is_locked);
}
+void Module::Interface::Unknown160(Kernel::HLERequestContext& ctx) {
+ LOG_WARNING(Service_ACC, "(STUBBED) called");
+
+ IPC::ResponseBuilder rb{ctx, 2};
+ rb.Push(ResultSuccess);
+}
+
void Module::Interface::GetProfileEditor(Kernel::HLERequestContext& ctx) {
IPC::RequestParser rp{ctx};
Common::UUID user_id = rp.PopRaw<Common::UUID>();