summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/aoc
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-10-14 04:52:54 +0200
committerZach Hilman <zachhilman@gmail.com>2018-10-14 04:52:54 +0200
commit7e2096db8a1db9f573c8aac63072309d9be0c856 (patch)
tree867155586a0e387c0344f1449656596fbdf08dfe /src/core/hle/service/aoc
parentMerge pull request #1409 from DarkLordZach/key-derivation (diff)
downloadyuzu-7e2096db8a1db9f573c8aac63072309d9be0c856.tar
yuzu-7e2096db8a1db9f573c8aac63072309d9be0c856.tar.gz
yuzu-7e2096db8a1db9f573c8aac63072309d9be0c856.tar.bz2
yuzu-7e2096db8a1db9f573c8aac63072309d9be0c856.tar.lz
yuzu-7e2096db8a1db9f573c8aac63072309d9be0c856.tar.xz
yuzu-7e2096db8a1db9f573c8aac63072309d9be0c856.tar.zst
yuzu-7e2096db8a1db9f573c8aac63072309d9be0c856.zip
Diffstat (limited to 'src/core/hle/service/aoc')
-rw-r--r--src/core/hle/service/aoc/aoc_u.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/aoc/aoc_u.cpp b/src/core/hle/service/aoc/aoc_u.cpp
index 0ecfb5af1..77c01e595 100644
--- a/src/core/hle/service/aoc/aoc_u.cpp
+++ b/src/core/hle/service/aoc/aoc_u.cpp
@@ -97,8 +97,9 @@ void AOC_U::ListAddOnContent(Kernel::HLERequestContext& ctx) {
ctx.WriteBuffer(out);
- IPC::ResponseBuilder rb{ctx, 2};
+ IPC::ResponseBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS);
+ rb.Push(count);
}
void AOC_U::GetAddOnContentBaseId(Kernel::HLERequestContext& ctx) {