From f0ac2b7a054910baefd1f82962cfe35f8fc9ddab Mon Sep 17 00:00:00 2001 From: Peli de Halleux Date: Wed, 18 Jan 2017 16:12:58 -0800 Subject: [PATCH] fixing debug message --- sim/state/ledmatrix.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim/state/ledmatrix.ts b/sim/state/ledmatrix.ts index 53c3b06f..96c12062 100644 --- a/sim/state/ledmatrix.ts +++ b/sim/state/ledmatrix.ts @@ -28,7 +28,7 @@ namespace pxsim { this.data = data; } public print() { - pxt.debug(`Image id:${this.id} refs:${this.refcnt} size:${this.width}x${Image.height}`) + // console.debug(`Image id:${this.id} refs:${this.refcnt} size:${this.width}x${Image.height}`) } public get(x: number, y: number): number { if (x < 0 || x >= this.width || y < 0 || y >= 5) return 0;