Remove unneeded ".this"

This commit is contained in:
Alex Barney
2018-12-01 14:24:37 -06:00
parent 77972140a6
commit 267f82bd82
125 changed files with 303 additions and 303 deletions

View File

@ -14,10 +14,10 @@ namespace Ryujinx.HLE.HOS.Kernel
public long TimePoint { get; private set; }
public WaitingObject(IKFutureSchedulerObject Object, long timePoint)
public WaitingObject(IKFutureSchedulerObject schedulerObj, long timePoint)
{
this.Object = Object;
this.TimePoint = timePoint;
Object = schedulerObj;
TimePoint = timePoint;
}
}
@ -38,13 +38,13 @@ namespace Ryujinx.HLE.HOS.Kernel
work.Start();
}
public void ScheduleFutureInvocation(IKFutureSchedulerObject Object, long timeout)
public void ScheduleFutureInvocation(IKFutureSchedulerObject schedulerObj, long timeout)
{
long timePoint = PerformanceCounter.ElapsedMilliseconds + ConvertNanosecondsToMilliseconds(timeout);
lock (_waitingObjects)
{
_waitingObjects.Add(new WaitingObject(Object, timePoint));
_waitingObjects.Add(new WaitingObject(schedulerObj, timePoint));
}
_waitEvent.Set();