mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 03:52:19 +02:00
Spelling fix
This commit is contained in:
parent
d7de0f19ca
commit
291d176e8f
1 changed files with 3 additions and 3 deletions
|
@ -22,7 +22,7 @@ namespace System
|
||||||
List<void*> mLargeRawAllocs;
|
List<void*> mLargeRawAllocs;
|
||||||
List<Object> mLargeDtorAllocs;
|
List<Object> mLargeDtorAllocs;
|
||||||
int mPoolsSize;
|
int mPoolsSize;
|
||||||
int mLageAllocs;
|
int mLargeAllocs;
|
||||||
public DestructorHandlingKind DestructorHandling = .Allow;
|
public DestructorHandlingKind DestructorHandling = .Allow;
|
||||||
|
|
||||||
uint8* mCurAlloc;
|
uint8* mCurAlloc;
|
||||||
|
@ -123,7 +123,7 @@ namespace System
|
||||||
{
|
{
|
||||||
if ((size > (mCurEnd - mCurAlloc) / 2) && (mCurAlloc != null))
|
if ((size > (mCurEnd - mCurAlloc) / 2) && (mCurAlloc != null))
|
||||||
{
|
{
|
||||||
mLageAllocs += size;
|
mLargeAllocs += size;
|
||||||
void* largeAlloc = AllocLarge(size, align);
|
void* largeAlloc = AllocLarge(size, align);
|
||||||
if (mLargeRawAllocs == null)
|
if (mLargeRawAllocs == null)
|
||||||
mLargeRawAllocs = new List<void*>();
|
mLargeRawAllocs = new List<void*>();
|
||||||
|
@ -147,7 +147,7 @@ namespace System
|
||||||
{
|
{
|
||||||
if ((size > (mCurEnd - mCurAlloc) / 2) && (mCurAlloc != null))
|
if ((size > (mCurEnd - mCurAlloc) / 2) && (mCurAlloc != null))
|
||||||
{
|
{
|
||||||
mLageAllocs += size;
|
mLargeAllocs += size;
|
||||||
void* largeAlloc = AllocLarge(size, align);
|
void* largeAlloc = AllocLarge(size, align);
|
||||||
if (mLargeDtorAllocs == null)
|
if (mLargeDtorAllocs == null)
|
||||||
mLargeDtorAllocs = new List<Object>();
|
mLargeDtorAllocs = new List<Object>();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue