From b2aa87da77a0d9ad286cfcfad251f208bafab963 Mon Sep 17 00:00:00 2001 From: DD Date: Thu, 26 Apr 2018 18:43:49 -0400 Subject: [PATCH] fix lint --- src/virtual-machine.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/virtual-machine.js b/src/virtual-machine.js index 609d83291..b8749f320 100644 --- a/src/virtual-machine.js +++ b/src/virtual-machine.js @@ -569,7 +569,8 @@ class VirtualMachine extends EventEmitter { * @param {HTMLCanvasElement} bitmap - new bitmap for the renderer. * @param {number} rotationCenterX x of point about which the costume rotates, relative to its upper left corner * @param {number} rotationCenterY y of point about which the costume rotates, relative to its upper left corner - * @param {number} bitmapResolution 1 for bitmaps that have 1 pixel per unit of stage, 2 for double-resolution bitmaps + * @param {number} bitmapResolution 1 for bitmaps that have 1 pixel per unit of stage, + * 2 for double-resolution bitmaps */ updateBitmap (costumeIndex, bitmap, rotationCenterX, rotationCenterY, bitmapResolution) { const costume = this.editingTarget.getCostumes()[costumeIndex];