# Sounds making my looping music stop

**URL:** https://qa.fmod.com/t/sounds-making-my-looping-music-stop/20864
**Category:** FMOD Engine
**Tags:** cpp
**Created:** [November 11, 2023, 2:25am UTC](https://qa.fmod.com/t/sounds-making-my-looping-music-stop/20864 "2023-11-11T02:25:07Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![abb2k](https://avatars.discourse-cdn.com/v4/letter/a/7ea924/32.png) [@abb2k](https://qa.fmod.com/u/abb2k)
#### Post date: [November 11, 2023, 2:25am UTC](https://qa.fmod.com/t/sounds-making-my-looping-music-stop/20864/1 "2023-11-11T02:25:07Z")

</div>

so i have multiple looping background music and ambiance, and sometimes when i play new sounds (for sound effects) it sometimes makes my background music and all just stop. why could this happen? and how can i maybe fix this problem?

---

<div class="post-metadata">

### Author: ![Leah\_FMOD](https://yyz2.discourse-cdn.com/flex036/user_avatar/qa.fmod.com/leah_fmod/32/3685_2.png) [@Leah\_FMOD](https://qa.fmod.com/u/Leah_FMOD)
#### Post date: [November 13, 2023, 12:30am UTC](https://qa.fmod.com/t/sounds-making-my-looping-music-stop/20864/2 "2023-11-13T00:30:43Z")

</div>

Hi,

There are a couple of things that could cause this, but the most likely culprit is that there’s some kind of stealing behaviour occuring. For example:

- Your BGM and ambience with the addition of sound effects causes the total number of playing channels to exceed the maximum channel count, causing some of the channels to become virtual and go silent - see `maxchannels` when initializing a [Studio system](https://www.fmod.com/docs/2.02/api/studio-api-system.html#studio_system_initialize) or a [Core system](https://www.fmod.com/docs/2.02/api/core-api-system.html#system_init)
- You have [bus-level instance limiting](https://www.fmod.com/docs/2.02/studio/mixing.html#bus-instance-limiting) enabled in Studio, causing some event instances to stop when starting the sound effect events

The issue could also be your own code, if you are manually managing the lifetimes of your sounds/events, or potentially that you have too many streaming assets playing at once However, it’s difficult to diagnose the issue precisely without more information. If the culprit isn’t any of the stealing behaviours I mentioned, can I get you to provide the following information:

- Your FMOD version
- Whether you’re using Studio API (events), or Core API (sounds)
- A simple set of steps that reproduces the issue consistently
