naive channel pair refactor (dumb replace one pair with vector of pairs)

This commit is contained in:
LTVA1 2024-08-14 20:01:16 +03:00
parent 0ea53fdae5
commit 7c324ec39d
19 changed files with 140 additions and 138 deletions

View file

@ -525,11 +525,10 @@ unsigned short DivPlatformDave::getPan(int ch) {
}
// TODO: the rest
DivChannelPair DivPlatformDave::getPaired(int ch) {
void DivPlatformDave::getPaired(int ch, std::vector<DivChannelPair>& ret) {
if (chan[ch].highPass) {
DivChannelPair("high",(ch+1)&3);
ret.push_back(DivChannelPair("high",(ch+1)&3));
}
return DivChannelPair();
}
DivChannelModeHints DivPlatformDave::getModeHints(int ch) {