Address feedback

This commit is contained in:
Morph
2020-03-27 23:22:25 -04:00
parent 6393edb885
commit f1cad34ca4

View File

@@ -58,12 +58,12 @@ void CAPS_U::GetAlbumContentsFileListForApplication(Kernel::HLERequestContext& c
// u8 ContentType, two s64s, and an u64 AppletResourceUserId. Returns an output u64 for total
// output entries (which is copied to a s32 by official SW).
IPC::RequestParser rp{ctx};
auto application_album_entries = rp.PopRaw<std::array<u8, 0x30>>();
auto pid = rp.Pop<s32>();
auto content_type = rp.PopRaw<ContentType>();
auto start_datetime = rp.PopRaw<AlbumFileDateTime>();
auto end_datetime = rp.PopRaw<AlbumFileDateTime>();
auto applet_resource_user_id = rp.Pop<u64>();
[[maybe_unused]] const auto application_album_file_entries = rp.PopRaw<std::array<u8, 0x30>>();
const auto pid = rp.Pop<s32>();
const auto content_type = rp.PopRaw<ContentType>();
[[maybe_unused]] const auto start_datetime = rp.PopRaw<AlbumFileDateTime>();
[[maybe_unused]] const auto end_datetime = rp.PopRaw<AlbumFileDateTime>();
const auto applet_resource_user_id = rp.Pop<u64>();
LOG_WARNING(Service_Capture,
"(STUBBED) called. pid={}, content_type={}, applet_resource_user_id={}", pid,
content_type, applet_resource_user_id);