ma_vfs*pResourceManagerVFS;/* A pointer to a pre-allocated VFS object to use with the resource manager. This is ignored if pResourceManager is not NULL. */
ma_vfs*pResourceManagerVFS;/* A pointer to a pre-allocated VFS object to use with the resource manager. This is ignored if pResourceManager is not NULL. */
/* There's no available sounds for recycling. We need to allocate a sound. This can be done using a stack allocator. */
/* There's no available sounds for recycling. We need to allocate a sound. This can be done using a stack allocator. */
pSound=ma__malloc_from_callbacks(sizeof(*pSound),&pEngine->allocationCallbacks/*, MA_ALLOCATION_TYPE_SOUND*/);/* TODO: This can certainly be optimized. */
pSound=(ma_sound*)ma__malloc_from_callbacks(sizeof(*pSound),&pEngine->allocationCallbacks/*, MA_ALLOCATION_TYPE_SOUND*/);/* TODO: This can certainly be optimized. */