pattern data refactor, part 6

crap
This commit is contained in:
tildearrow 2025-10-15 21:56:04 -05:00
parent 7ba6b3680a
commit 6c804c3674
2 changed files with 3 additions and 2 deletions

View file

@ -2307,6 +2307,7 @@ void DivEngine::noteToSplitNote(short note, short& outNote, short& outOctave) {
case -1:
outNote=0;
outOctave=0;
break;
default:
outNote=note%12;
outOctave=(unsigned char)(note-60)/12;