mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-28 15:20:47 -07:00
Remove unneeded ".this"
This commit is contained in:
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user