mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-28 14:50:47 -07:00
Naming conventions
This commit is contained in:
@ -3,12 +3,12 @@ namespace Ryujinx.HLE.HOS.Kernel
|
||||
class KTransferMemory
|
||||
{
|
||||
public ulong Address { get; private set; }
|
||||
public ulong Size { get; private set; }
|
||||
public ulong Size { get; private set; }
|
||||
|
||||
public KTransferMemory(ulong Address, ulong Size)
|
||||
public KTransferMemory(ulong address, ulong size)
|
||||
{
|
||||
this.Address = Address;
|
||||
this.Size = Size;
|
||||
this.Address = address;
|
||||
this.Size = size;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user