Browse Source
Merge pull request #11765 from german77/cap_mac
service: caps: Remove ambiguous call
pull/15/merge
liamwhite
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
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) { |
|
|
|
|