Fix private on some call (#733)

Since the reflection code didn't take care about `private`, this cause regression, so I have added the flag just in case and fix calls who are declared with `private` to `public`.
This commit is contained in:
Ac_K 2019-07-14 23:22:53 +02:00 committed by Thomas Guillemard
parent 97d0c62423
commit d5cc919369
5 changed files with 6 additions and 6 deletions

View file

@ -93,7 +93,7 @@ namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
[Command(3)]
// GetState() -> u32
private ResultCode GetState(ServiceCtx context)
public ResultCode GetState(ServiceCtx context)
{
context.ResponseData.Write((int)_playState);