mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-07 04:06:45 +01:00
shrink sampler
This commit is contained in:
parent
6c266fcfca
commit
5bd9068bbe
3 changed files with 8 additions and 7 deletions
|
|
@ -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 {
|
||||
'·'
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue