New settings for better portamento performance on Roland SE-02. SEL for switching between OFF and LIN, SEE for switching between OFF and EXP.

This commit is contained in:
Johan Berglund 2020-02-24 18:27:06 +01:00
parent 6183f0faee
commit 7eccf7eeec
4 changed files with 12 additions and 3 deletions

View file

@ -891,9 +891,9 @@ const MenuPage breathMenuPage = {
//***********************************************************
// Control menu
const MenuEntrySub portMenu = {
MenuType::ESub, "PORT/GLD", "PORT/GLD", &portamento, 0, 2, MenuEntryFlags::EMenuEntryWrap,
MenuType::ESub, "PORT/GLD", "PORT/GLD", &portamento, 0, 4, MenuEntryFlags::EMenuEntryWrap,
[](SubMenuRef __unused,char* out, const char ** __unused unit) {
const char* labs[] = { "OFF", "ON", "SW" };
const char* labs[] = { "OFF", "ON", "SW", "SEL", "SEE" };
strncpy(out, labs[portamento], 4);
},
[](SubMenuRef __unused sub) { writeSetting(PORTAM_ADDR,portamento); }