mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-24 06:52:40 -05:00
Fix variable name
This commit is contained in:
parent
d3f687a6a7
commit
e447f003a1
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ const fetchBitmapCanvas_ = function (costume, runtime, rotationCenter) {
|
|||
};
|
||||
})
|
||||
.catch(error => {
|
||||
log.warn(`${e.name}: ${e.message}`);
|
||||
log.warn(`${error.name}: ${error.message}`);
|
||||
// Clean up the text layer properties if it fails to load
|
||||
delete costume.textLayerMD5;
|
||||
delete costume.textLayerAsset;
|
||||
|
|
Loading…
Reference in a new issue