Fix warning in CARAMManager

Former-commit-id: 62aae6def33fcae826dd0462772744607715c5c8
This commit is contained in:
Phillip Stephens 2023-10-12 15:44:57 -07:00
parent 3a1d0d0d34
commit b344eead7a
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ bool CARAMManager::Initialize(uint chunkSize) {
mpARAMStart = ARAlloc(chunkSize * numChunks); mpARAMStart = ARAlloc(chunkSize * numChunks);
mpBookKeepingMemory = (uint*)CMemory::Alloc(numChunks * 4, IAllocator::kHI_None, mpBookKeepingMemory = (uint*)CMemory::Alloc(numChunks * 4, IAllocator::kHI_None,
IAllocator::kSC_Unk1, IAllocator::kTP_Heap, IAllocator::kSC_Unk1, IAllocator::kTP_Heap,
CCallStack(-1, "??(??)", CCallStack::kUnknownType)); CCallStack(-1, "??(??)"));
CMemory::OffsetFakeStatics(mNumChunks * 4); CMemory::OffsetFakeStatics(mNumChunks * 4);
for (uint i = 0; i < numChunks; ++i) { for (uint i = 0; i < numChunks; ++i) {