mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-16 05:07:55 +00:00
service/audren_u: Remove unnecessary return value from GetActiveAudioDeviceName()
This service function only ever returns a result and nothing more.
This commit is contained in:
parent
9532e5e262
commit
b5db7b0100
1 changed files with 1 additions and 2 deletions
|
@ -242,9 +242,8 @@ private:
|
||||||
|
|
||||||
ctx.WriteBuffer(out_device_name);
|
ctx.WriteBuffer(out_device_name);
|
||||||
|
|
||||||
IPC::ResponseBuilder rb{ctx, 3};
|
IPC::ResponseBuilder rb{ctx, 2};
|
||||||
rb.Push(RESULT_SUCCESS);
|
rb.Push(RESULT_SUCCESS);
|
||||||
rb.Push<u32>(1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void QueryAudioDeviceSystemEvent(Kernel::HLERequestContext& ctx) {
|
void QueryAudioDeviceSystemEvent(Kernel::HLERequestContext& ctx) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue