This commit is contained in:
Felix Roos 2022-02-25 21:51:15 +01:00
parent 508767278f
commit 867dbf33dc

View File

@ -47,7 +47,7 @@ function useRepl({ tune, defaultSynth, autolink = true, onEvent }: any) {
// logs events of cycle // logs events of cycle
const logCycle = (_events: any, cycle: any) => { const logCycle = (_events: any, cycle: any) => {
if (_events.length) { if (_events.length) {
pushLog(`# cycle ${cycle}\n` + _events.map((e: any) => e.show()).join('\n')); // pushLog(`# cycle ${cycle}\n` + _events.map((e: any) => e.show()).join('\n'));
} }
}; };
// cycle hook to control scheduling // cycle hook to control scheduling