mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 21:37:36 +00:00
Piano: Add velocity and pitch support
As Piano will later move to the RollNote defintions of LibDSP, it's a good idea to already insert velocity and pitch support, even though it's currently not used.
This commit is contained in:
parent
fdef6e5f76
commit
ad6a332268
3 changed files with 4 additions and 2 deletions
|
@ -272,7 +272,7 @@ void Track::sync_roll(int note)
|
|||
|
||||
void Track::set_roll_note(int note, u32 on_sample, u32 off_sample)
|
||||
{
|
||||
RollNote new_roll_note = { on_sample, off_sample };
|
||||
RollNote new_roll_note = { on_sample, off_sample, (u8)note, 0 };
|
||||
|
||||
VERIFY(note >= 0 && note < note_count);
|
||||
VERIFY(new_roll_note.off_sample < roll_length);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue