MeadowlarkDAW / Meadowlark

A (currently incomplete) open-source Digital Audio Workstation
GNU General Public License v3.0
1.37k stars 49 forks source link

Expected usize #55

Closed antonovmike closed 1 year ago

antonovmike commented 1 year ago

Doesn't run because compiler complains about the isize:

Meadowlark/src/backend/sample_browser_plug.rs

line 336 pcm.fill_stereo_f32(playhead as isize, buf_l_part, buf_r_part); line 369 old_playhead as isize,

Changed to usize. Now DAW starts

BillyDM commented 1 year ago

Currently only the dev branch is working. Also make sure to run cargo update first as this problem is usually caused by dependencies being updated.