mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-08 06:39:58 +00:00
service: Remove unused RequestParser instances
These aren't used, so they should be removed to reduce compilation warnings.
This commit is contained in:
parent
b8f5c71f2d
commit
4d8a8a8033
2 changed files with 0 additions and 3 deletions
|
@ -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);
|
||||||
|
|
||||||
|
|
|
@ -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);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue