Add GetProgramIndexForAccessLog
Ryujinx only runs one program at a time, so always return values reflecting that
This commit is contained in:
parent
3d1d3792ea
commit
ddb2ceb073
1 changed files with 12 additions and 0 deletions
|
@ -440,5 +440,17 @@ namespace Ryujinx.HLE.HOS.Services.Fs
|
||||||
|
|
||||||
return ResultCode.Success;
|
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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue