Memory leak in RuntimeManager.Update

For ages I’ve noticed a few memory allocations every frame in RuntimeManager.Update and done nothing about it. I only just realised today that RuntimeManager is an FMOD class :slight_smile: Any idea what the allocations might be and how to remove them (if they can be removed)? I’m on 2.00.05 and the debug overlay is off. I’m asking because I’m trying to track down some memory leaks, so if these allocations are actually harmless let me know that too :smiley:

image|341x190

The picture you linked is of the CPU Usage Profiler, which reflects the amount of time spent completing operations (in relation to each other).

The two pink blips are GC Allocs, which indicate memory dropping into the garbage. It happens every frame in the RuntimeManager.Update. One is 20 bytes, the other is 112 bytes, if that helps

As far as I can see it is to do with the Settings.Instance.IsOverlayEnabled call in update, which only occurs in the editor and not in a built game (which seems fairly harmless).

Excellent, that’d very good to know