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

@ -8,12 +8,12 @@ namespace Ryujinx.HLE.HOS.Kernel
public KMemoryBlockAllocator(ulong capacityElements)
{
this._capacityElements = capacityElements;
_capacityElements = capacityElements;
}
public bool CanAllocate(int count)
{
return (ulong)(this.Count + count) <= _capacityElements;
return (ulong)(Count + count) <= _capacityElements;
}
}
}