mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-28 14:50:47 -07:00
Naming conventions
This commit is contained in:
@ -13,26 +13,26 @@ namespace Ryujinx.HLE.HOS.Kernel
|
||||
public int DeviceRefCount { get; set; }
|
||||
|
||||
public KMemoryBlock(
|
||||
ulong BaseAddress,
|
||||
ulong PagesCount,
|
||||
MemoryState State,
|
||||
MemoryPermission Permission,
|
||||
MemoryAttribute Attribute)
|
||||
ulong baseAddress,
|
||||
ulong pagesCount,
|
||||
MemoryState state,
|
||||
MemoryPermission permission,
|
||||
MemoryAttribute attribute)
|
||||
{
|
||||
this.BaseAddress = BaseAddress;
|
||||
this.PagesCount = PagesCount;
|
||||
this.State = State;
|
||||
this.Attribute = Attribute;
|
||||
this.Permission = Permission;
|
||||
this.BaseAddress = baseAddress;
|
||||
this.PagesCount = pagesCount;
|
||||
this.State = state;
|
||||
this.Attribute = attribute;
|
||||
this.Permission = permission;
|
||||
}
|
||||
|
||||
public KMemoryInfo GetInfo()
|
||||
{
|
||||
ulong Size = PagesCount * KMemoryManager.PageSize;
|
||||
ulong size = PagesCount * KMemoryManager.PageSize;
|
||||
|
||||
return new KMemoryInfo(
|
||||
BaseAddress,
|
||||
Size,
|
||||
size,
|
||||
State,
|
||||
Permission,
|
||||
Attribute,
|
||||
|
Reference in New Issue
Block a user