Fix typo with variable

This commit is contained in:
Luke Murphy 2020-02-07 12:53:10 +01:00
parent 8af457e626
commit db26aec15f
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC

View File

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