add a new Profile flag for livetrax

This commit is contained in:
Paul Davis 2024-03-20 06:48:54 -06:00
parent 16ed245977
commit 125b0f9432
1 changed files with 4 additions and 0 deletions

View File

@ -32,6 +32,7 @@ public:
SmallScreen,
SinglePackage,
Mixbus,
LiveTrax,
LastElement,
};
@ -44,6 +45,9 @@ public:
bool get_mixbus() const { return bits[Mixbus]; }
void set_mixbus() { bits[Mixbus] = true; }
bool get_livetrax() const { return bits[LiveTrax]; }
void set_livetrax() { bits[LiveTrax] = true; }
void set_single_package () { bits[SinglePackage] = true; }
bool get_single_package () const { return bits[SinglePackage]; }