keep working

This commit is contained in:
meganrogge
2021-08-09 14:52:47 -07:00
parent e01e9c9584
commit 3b3ef09d87
+2 -2
View File
@@ -401,8 +401,8 @@ export abstract class BaseRenderLayer implements IRenderLayer {
for (let i = 0; i < boxes.length; i++) {
const box = boxes[i];
this._ctx.fillRect(
xOffset + (box.x * xEighth),
yOffset + (box.y * yEighth),
xOffset + (box.x*xEighth),
yOffset + (box.y*yEighth),
(box.w * xEighth),
(box.h * yEighth));
}