Skip to content

Commit ee0a578

Browse files
committed
make save work when paused
1 parent f5ad7cc commit ee0a578

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: editor/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ async function main() {
406406
// even if one of the functions below fails (given we're
407407
// running user code)
408408
requestAnimationFrame(render, canvas);
409-
if (playing) {
409+
if (playing || g_captureFn) {
410410
updateTimeDisplay();
411411
g_visualizer.render(g_byteBeat, g_analyzers);
412412
if (g_captureFn) {

0 commit comments

Comments
 (0)