program: serum3 should work when group has version 1, perps and multiple banks should be moved to version 2 or beyond (#205)

Signed-off-by: microwavedcola1 <microwavedcola@gmail.com>

Signed-off-by: microwavedcola1 <microwavedcola@gmail.com>
This commit is contained in:
microwavedcola1 2022-09-01 09:48:38 +02:00 committed by GitHub
parent 5f62f15549
commit b30b2f8870
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ impl Group {
}
pub fn multiple_banks_supported(&self) -> bool {
self.is_testing() || self.version > 0
self.is_testing() || self.version > 1
}
pub fn serum3_supported(&self) -> bool {
@ -52,7 +52,7 @@ impl Group {
}
pub fn perps_supported(&self) -> bool {
self.is_testing() || self.version > 0
self.is_testing() || self.version > 1
}
}