Split action bar 1 and 2 into separate sets

feature/split-action-bar-1-and-2
nimetu 3 years ago
parent d2508c8b15
commit 3fc85ea291

@ -1602,7 +1602,8 @@ public:
{
CSPhraseManager *pPM= CSPhraseManager::getInstance();
sint val= (sint32)value.getInteger();
clamp(val, 0, MEM_SET_TYPES::NumMemories-1);
// first half of memorized stanza sets
clamp(val, 0, MEM_SET_TYPES::NumMemories / 2 - 1);
pPM->selectMemoryLineDB(val);
}
}
@ -1626,8 +1627,11 @@ public:
else
{
CSPhraseManager *pPM= CSPhraseManager::getInstance();
sint val= (sint32)value.getInteger();
clamp(val, 0, MEM_SET_TYPES::NumMemories-1);
// second half of memorized stanza sets
sint minValue = MEM_SET_TYPES::NumMemories / 2;
sint maxValue = MEM_SET_TYPES::NumMemories - 1;
sint val = (sint32)value.getInteger() + minValue;
clamp(val, minValue, maxValue);
pPM->selectMemoryLineDBalt(val);
}
}

@ -27,7 +27,7 @@ namespace MEM_SET_TYPES
// New System. Only 10 memories are allowed
enum
{
NumMemories= 10,
NumMemories= 20,
};
// Deprecated

Loading…
Cancel
Save