From ee0a5789f64790689afd53c389955f2c9c9335dc Mon Sep 17 00:00:00 2001 From: Gregg Tavares Date: Tue, 15 Oct 2024 16:38:41 +0900 Subject: [PATCH] make save work when paused --- editor/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/index.js b/editor/index.js index 45be8aa..81741a3 100644 --- a/editor/index.js +++ b/editor/index.js @@ -406,7 +406,7 @@ async function main() { // even if one of the functions below fails (given we're // running user code) requestAnimationFrame(render, canvas); - if (playing) { + if (playing || g_captureFn) { updateTimeDisplay(); g_visualizer.render(g_byteBeat, g_analyzers); if (g_captureFn) {