Browse Source

Fix typo with variable

main
Luke Murphy 4 years ago
parent
commit
db26aec15f
No known key found for this signature in database GPG Key ID: 5E2EF5A63E3718CC
  1. 4
      voicegardens/static/voicegardens.js

4
voicegardens/static/voicegardens.js

@ -387,9 +387,9 @@ function draw() {
translate(screenX, screenY); translate(screenX, screenY);
if (newSoundJustRecorded === true) { if (newSoundJustRecorded === true) {
newShape = new GeneratedShape(); let newShape = new GeneratedShape();
shapes.push(newShape); shapes.push(newShape);
addToArchive(newShape); addToFooterArchive(newShape);
newSoundJustRecorded = false; newSoundJustRecorded = false;
} }

Loading…
Cancel
Save