Naming conventions

This commit is contained in:
Alex Barney
2018-12-01 14:01:59 -06:00
parent 8faae5612d
commit 77972140a6
286 changed files with 11867 additions and 11845 deletions

View File

@ -15,23 +15,23 @@ namespace Ryujinx.HLE.HOS.Kernel
public int PersonalMmHeapPagesCount { get; private set; }
public ProcessCreationInfo(
string Name,
int Category,
long TitleId,
ulong CodeAddress,
int CodePagesCount,
int MmuFlags,
int ResourceLimitHandle,
int PersonalMmHeapPagesCount)
string name,
int category,
long titleId,
ulong codeAddress,
int codePagesCount,
int mmuFlags,
int resourceLimitHandle,
int personalMmHeapPagesCount)
{
this.Name = Name;
this.Category = Category;
this.TitleId = TitleId;
this.CodeAddress = CodeAddress;
this.CodePagesCount = CodePagesCount;
this.MmuFlags = MmuFlags;
this.ResourceLimitHandle = ResourceLimitHandle;
this.PersonalMmHeapPagesCount = PersonalMmHeapPagesCount;
this.Name = name;
this.Category = category;
this.TitleId = titleId;
this.CodeAddress = codeAddress;
this.CodePagesCount = codePagesCount;
this.MmuFlags = mmuFlags;
this.ResourceLimitHandle = resourceLimitHandle;
this.PersonalMmHeapPagesCount = personalMmHeapPagesCount;
}
}
}