Audiokinetic's Community Q&A is the forum where users can ask and answer questions within the Wwise and Strata communities. If you would like to get an answer from Audiokinetic's Technical support team, make sure you use the Support Tickets page.

0 votes
Hi,

 

I am getting this error in UE4.

 

http://s909.photobucket.com/user/RobertPsoih/media/Lower%20Engine%20Defualt_zpstsabm6cf.png.html?sort=3&o=0

 

How would I change the default memory pool?

 

-Rob
in General Discussion by Robert M. (4.6k points)

1 Answer

0 votes
In AkAudioDevice.cpp within the EnsureInitialized function you can set this up. It's part of the platformInitSettings struct.

Something like;

AkPlatformInitSettings platformInitSettings;
AK::SoundEngine::GetDefaultPlatformInitSettings( platformInitSettings);
platformInitSettings.uLEngineDefaultPoolSize = size required here

should do the trick
by David B. (210 points)
...