Skip to content

Commit

Permalink
PLG presents now defined in bank section.
Browse files Browse the repository at this point in the history
  • Loading branch information
PoneyClairDeLune committed Nov 15, 2023
1 parent 840b1de commit 938592e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/state/bankReader.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ let VoiceBank = class {
break;
};
case 33:
case 34: // I guess this is for PF, but I'm not sure
case 35:
case 36: {
if (lsb > 125) {
Expand Down Expand Up @@ -166,6 +167,16 @@ let VoiceBank = class {
};
break;
};
case 32:
case 33:
case 34:
case 35:
case 36: {
if (mode == "xg") {
sect = `${["AP", "VL", "PF", "DX", "AN"][msb & 7]}-${"abcdefgh"[lsb]}`;
};
break;
};
case 48: {
sect = `yM${(args[2] >> 3).toString().padStart(2, "0")}`;
useLsb = 1;
Expand Down

0 comments on commit 938592e

Please sign in to comment.