summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2023-10-12 12:52:55 -0600
committerNarr the Reg <juangerman-13@hotmail.com>2023-10-12 12:52:55 -0600
commit3f05b8facdff13308fcf3dfdad9d2d05076482f6 (patch)
treebd2a421fd4e27bde6c8ae038f16262f0f7d3da95 /src
parent65d3300875e1523efaf02cd78a3392e2dc0ef743 (diff)
service: caps: Remove ambiguous call
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/caps/caps_a.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/caps/caps_a.cpp b/src/core/hle/service/caps/caps_a.cpp
index e22f72bf6..9925720a3 100644
--- a/src/core/hle/service/caps/caps_a.cpp
+++ b/src/core/hle/service/caps/caps_a.cpp
@@ -128,9 +128,9 @@ void IAlbumAccessorService::GetAlbumFileListEx0(HLERequestContext& ctx) {
ctx.WriteBuffer(entries);
}
- IPC::ResponseBuilder rb{ctx, 3};
+ IPC::ResponseBuilder rb{ctx, 4};
rb.Push(result);
- rb.Push(entries.size());
+ rb.Push<u64>(entries.size());
}
void IAlbumAccessorService::GetAutoSavingStorage(HLERequestContext& ctx) {