# Why use a dedicated master bank

**URL:** https://qa.fmod.com/t/why-use-a-dedicated-master-bank/22049
**Category:** FMOD Studio
**Created:** [August 30, 2024, 7:44pm UTC](https://qa.fmod.com/t/why-use-a-dedicated-master-bank/22049 "2024-08-30T19:44:44Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![mca2](https://yyz2.discourse-cdn.com/flex036/user_avatar/qa.fmod.com/mca2/32/3177_2.png) [@mca2](https://qa.fmod.com/u/mca2)
#### Post date: [August 30, 2024, 7:44pm UTC](https://qa.fmod.com/t/why-use-a-dedicated-master-bank/22049/1 "2024-08-30T19:44:44Z")

</div>

Is there an upside having a seperate master bank? Eg

- MasterBank (master)
- FirstBank
  - Event1
  - Event2
  - …

vs having none?

- FirstBank (master)
  - Event1
  - Event2
  - …

---

<div class="post-metadata">

### Author: ![joseph](https://yyz2.discourse-cdn.com/flex036/user_avatar/qa.fmod.com/joseph/32/264_2.png) [@joseph](https://qa.fmod.com/u/joseph)
#### Post date: [September 2, 2024, 8:07am UTC](https://qa.fmod.com/t/why-use-a-dedicated-master-bank/22049/2 "2024-09-02T08:07:47Z")

</div>

Usually yes, but it depends.

If you’ve put all your project’s audio content into one bank, there’s no benefit to having a separate master bank. This is because you’ll need to have your one content bank loaded at all times in order to play audio - and if you’re going to have it loaded at all times, there’s no point in having a separate master bank.

However, putting all your content into one bank is very unusual. It’s much more common for a game’s content to be sorted into multiple different banks, each of which corresponds to a different level, creature, biome, or some other category that makes sense for the game. Separating content out into multiple banks means that you can load specific banks of content when you’re likely need it and unload them when you don’t, in order to reduce the amount of content that needs to be kept loaded into memory at any given time. In such cases, it makes sense to have a separate master bank, since the master bank needs to be loaded at all times, and therefore can’t be unloaded to save memory the way other banks can be.
