Merge pull request #1394 from lioncash/stream
stream: Preserve enum class type in GetState()
This commit is contained in:
commit
fc2419e441
5 changed files with 12 additions and 12 deletions
|
@ -66,7 +66,7 @@ private:
|
|||
void GetAudioRendererState(Kernel::HLERequestContext& ctx) {
|
||||
IPC::ResponseBuilder rb{ctx, 3};
|
||||
rb.Push(RESULT_SUCCESS);
|
||||
rb.Push<u32>(renderer->GetState());
|
||||
rb.Push<u32>(static_cast<u32>(renderer->GetStreamState()));
|
||||
LOG_DEBUG(Service_Audio, "called");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue