mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-05 18:36:26 +02:00
Revert "Structural and Memory Safety Improvements, Analyzer Cleanup (ryubing/ryujinx!47)"
This reverts merge request !47
This commit is contained in:
parent
faf9e3cdd7
commit
77a797f154
307 changed files with 1245 additions and 1016 deletions
|
@ -12,9 +12,10 @@ namespace Ryujinx.HLE.HOS.Services.Ns
|
|||
// GetApplicationControlData(u8, u64) -> (unknown<4>, buffer<unknown, 6>)
|
||||
public ResultCode GetApplicationControlData(ServiceCtx context)
|
||||
{
|
||||
|
||||
_ = context.RequestData.ReadInt64(); // source
|
||||
_ = context.RequestData.ReadUInt64(); // titleId
|
||||
#pragma warning disable IDE0059 // Remove unnecessary value assignment
|
||||
byte source = (byte)context.RequestData.ReadInt64();
|
||||
ulong titleId = context.RequestData.ReadUInt64();
|
||||
#pragma warning restore IDE0059
|
||||
|
||||
ulong position = context.Request.ReceiveBuff[0].Position;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue