juicysfplugin/Source/PresetsToBanks.h

10 lines
221 B
C
Raw Normal View History

// http://www.synthfont.com/Tutorial6.html
// a bank can hold many (128) presets
// bank 128 is reserved for percussion
2018-02-27 08:25:20 +08:00
#pragma once
#include "Preset.h"
#include <map>
typedef std::multimap<int, Preset> BanksToPresets;