mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-12 06:36:41 +01:00
wip: fixing runtime crashes, pt.1
(you thought this was over?)
This commit is contained in:
parent
132093f14a
commit
94a16b9dbc
3 changed files with 32 additions and 32 deletions
|
|
@ -26,7 +26,7 @@ impl TryFrom<&Arc<RwLock<JackClient>>> for SequencerTui {
|
|||
cursor: (0, 0),
|
||||
entered: false,
|
||||
split: 20,
|
||||
midi_buf: vec![],
|
||||
midi_buf: vec![vec![];65536],
|
||||
note_buf: vec![],
|
||||
transport,
|
||||
})
|
||||
|
|
@ -54,7 +54,7 @@ impl TryFrom<&Arc<RwLock<JackClient>>> for ArrangerTui {
|
|||
entered: false,
|
||||
menu_bar: None,
|
||||
status_bar: None,
|
||||
midi_buf: vec![],
|
||||
midi_buf: vec![vec![];65536],
|
||||
note_buf: vec![],
|
||||
})
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue