diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-10-13 22:52:54 -0400 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-10-13 22:52:54 -0400 |
commit | 7e2096db8a1db9f573c8aac63072309d9be0c856 (patch) | |
tree | 867155586a0e387c0344f1449656596fbdf08dfe /src | |
parent | 1584fb6b385d51ef40e1e22c180322a552d9c98a (diff) |
aoc: Return size in ListAddOnContent
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/aoc/aoc_u.cpp | 3 |
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) { |