2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

Merge pull request #3712 from lioncash/remove

service: Remove unused RequestParser instances
This commit is contained in:
bunnei 2020-04-20 01:04:04 -04:00 committed by GitHub
commit 6de36f0b61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 3 deletions

View file

@ -252,8 +252,6 @@ private:
} }
void GetAudioDeviceOutputVolume(Kernel::HLERequestContext& ctx) { void GetAudioDeviceOutputVolume(Kernel::HLERequestContext& ctx) {
IPC::RequestParser rp{ctx};
const auto device_name_buffer = ctx.ReadBuffer(); const auto device_name_buffer = ctx.ReadBuffer();
const std::string name = Common::StringFromBuffer(device_name_buffer); const std::string name = Common::StringFromBuffer(device_name_buffer);

View file

@ -76,7 +76,6 @@ private:
} }
void ImportTicket(Kernel::HLERequestContext& ctx) { void ImportTicket(Kernel::HLERequestContext& ctx) {
IPC::RequestParser rp{ctx};
const auto ticket = ctx.ReadBuffer(); const auto ticket = ctx.ReadBuffer();
const auto cert = ctx.ReadBuffer(1); const auto cert = ctx.ReadBuffer(1);