Only use TRACK_ALLOC for non-reserved mappings

This commit is contained in:
Stephen Miller 2025-07-03 16:26:31 -05:00
parent 5789fd881c
commit b0b01b0865

View file

@ -414,9 +414,10 @@ s32 MemoryManager::MapMemory(void** out_addr, VAddr virtual_addr, u64 size, Memo
rasterizer->MapMemory(mapped_addr, size);
}
*out_addr = impl.Map(mapped_addr, size, alignment, phys_addr, is_exec);
}
TRACK_ALLOC(*out_addr, size, "VMEM");
}
return ORBIS_OK;
}