Add GetProgramIndexForAccessLog

Ryujinx only runs one program at a time, so always return values reflecting that
This commit is contained in:
Alex Barney 2019-10-31 12:33:58 -05:00
parent 3d1d3792ea
commit ddb2ceb073

View file

@ -440,5 +440,17 @@ namespace Ryujinx.HLE.HOS.Services.Fs
return ResultCode.Success;
}
[Command(1011)]
public ResultCode GetProgramIndexForAccessLog(ServiceCtx context)
{
int programIndex = 0;
int programCount = 1;
context.ResponseData.Write(programIndex);
context.ResponseData.Write(programCount);
return ResultCode.Success;
}
}
}