Revert "Adjust naming conventions and general refactoring in HLE Project (#490)" (#526)

This reverts commit 85dbb9559a.
This commit is contained in:
gdkchan 2018-12-04 22:52:39 -02:00 committed by GitHub
parent 85dbb9559a
commit 3615a70cae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
299 changed files with 12276 additions and 12268 deletions

View file

@ -2,25 +2,25 @@ namespace Ryujinx.HLE.HOS.Kernel
{
class KPort : KAutoObject
{
public KServerPort ServerPort { get; }
public KClientPort ClientPort { get; }
public KServerPort ServerPort { get; private set; }
public KClientPort ClientPort { get; private set; }
private long _nameAddress;
private bool _isLight;
private long NameAddress;
private bool IsLight;
public KPort(Horizon system) : base(system)
public KPort(Horizon System) : base(System)
{
ServerPort = new KServerPort(system);
ClientPort = new KClientPort(system);
ServerPort = new KServerPort(System);
ClientPort = new KClientPort(System);
}
public void Initialize(int maxSessions, bool isLight, long nameAddress)
public void Initialize(int MaxSessions, bool IsLight, long NameAddress)
{
ServerPort.Initialize(this);
ClientPort.Initialize(this, maxSessions);
ClientPort.Initialize(this, MaxSessions);
_isLight = isLight;
_nameAddress = nameAddress;
this.IsLight = IsLight;
this.NameAddress = NameAddress;
}
}
}