shrink sampler

This commit is contained in:
🪞👃🪞 2025-01-02 21:11:15 +01:00
parent 6c266fcfca
commit 5bd9068bbe
3 changed files with 8 additions and 7 deletions

View file

@ -33,8 +33,10 @@ impl PianoHorizontal {
'╎'
} else if time % note_len == 0 {
'┊'
} else if (127 - note) % 12 == 1 {
} else if (127 - note) % 12 == 0 {
'='
} else if (127 - note) % 6 == 0 {
'—'
} else {
'·'
});