1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 03:52:19 +02:00

Spelling fix

This commit is contained in:
Brian Fiete 2020-10-09 08:42:32 -07:00
parent d7de0f19ca
commit 291d176e8f

View file

@ -22,7 +22,7 @@ namespace System
List<void*> mLargeRawAllocs;
List<Object> mLargeDtorAllocs;
int mPoolsSize;
int mLageAllocs;
int mLargeAllocs;
public DestructorHandlingKind DestructorHandling = .Allow;
uint8* mCurAlloc;
@ -123,7 +123,7 @@ namespace System
{
if ((size > (mCurEnd - mCurAlloc) / 2) && (mCurAlloc != null))
{
mLageAllocs += size;
mLargeAllocs += size;
void* largeAlloc = AllocLarge(size, align);
if (mLargeRawAllocs == null)
mLargeRawAllocs = new List<void*>();
@ -147,7 +147,7 @@ namespace System
{
if ((size > (mCurEnd - mCurAlloc) / 2) && (mCurAlloc != null))
{
mLageAllocs += size;
mLargeAllocs += size;
void* largeAlloc = AllocLarge(size, align);
if (mLargeDtorAllocs == null)
mLargeDtorAllocs = new List<Object>();