Skip to content

Commit

Permalink
Mirrored PLG-VL internal bank to preset 1.
Browse files Browse the repository at this point in the history
  • Loading branch information
PoneyClairDeLune committed Aug 14, 2024
1 parent 328972f commit 1ecb597
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/state/bankReader.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,20 @@ let VoiceBank = class {
args[2] += 4; // PLG-150AP redirection
break;
};
case 33:
case 33: {
if (lsb > 125 || lsb == 3) {
args[2] = 0; // cc reset
};
args[2] += 5; // PLG-150VL redirection
break;
};
case 34: // I guess this is for PF, but I'm not sure
case 35:
case 36: {
if (lsb > 125) {
args[2] = 0; // cc reset
};
args[2] += 5; // PLG-150VL/DX/AN redirection
args[2] += 5; // PLG-150DX/AN redirection
break;
};
case 79:
Expand Down

0 comments on commit 1ecb597

Please sign in to comment.