Use properties on KernelAccessControlMmio
This commit is contained in:
parent
5772ac994e
commit
c6094f6441
1 changed files with 4 additions and 4 deletions
|
@ -2,10 +2,10 @@ namespace Ryujinx.HLE.Loaders.Npdm
|
|||
{
|
||||
struct KernelAccessControlMmio
|
||||
{
|
||||
public ulong Address;
|
||||
public ulong Size;
|
||||
public bool IsRo;
|
||||
public bool IsNormal;
|
||||
public ulong Address { get; private set; }
|
||||
public ulong Size { get; private set; }
|
||||
public bool IsRo { get; private set; }
|
||||
public bool IsNormal { get; private set; }
|
||||
|
||||
public KernelAccessControlMmio(
|
||||
ulong Address,
|
||||
|
|
Loading…
Add table
Reference in a new issue