summaryrefslogtreecommitdiff
path: root/src/core/hle/service/acc
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/acc')
-rw-r--r--src/core/hle/service/acc/acc.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/acc/acc.cpp b/src/core/hle/service/acc/acc.cpp
index 6c29cb613..2632cd3ef 100644
--- a/src/core/hle/service/acc/acc.cpp
+++ b/src/core/hle/service/acc/acc.cpp
@@ -496,8 +496,9 @@ public:
496 void LoadIdTokenCache(HLERequestContext& ctx) { 496 void LoadIdTokenCache(HLERequestContext& ctx) {
497 LOG_WARNING(Service_ACC, "(STUBBED) called"); 497 LOG_WARNING(Service_ACC, "(STUBBED) called");
498 498
499 IPC::ResponseBuilder rb{ctx, 2}; 499 IPC::ResponseBuilder rb{ctx, 3};
500 rb.Push(ResultSuccess); 500 rb.Push(ResultSuccess);
501 rb.Push(0);
501 } 502 }
502 503
503protected: 504protected: