Skip to content

Commit 53b1562

Browse files
committed
jshint fix
1 parent c819f0b commit 53b1562

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/core/Game.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -697,9 +697,9 @@ Phaser.Game.prototype = {
697697
this.renderType = Phaser.CANVAS;
698698
}
699699

700-
this.renderer = new PIXI.CanvasRenderer(this.width, this.height, { "view": this.canvas,
701-
"transparent": this.transparent,
702-
"resolution": this.resolution,
700+
this.renderer = new PIXI.CanvasRenderer(this.width, this.height, { "view": this.canvas,
701+
"transparent": this.transparent,
702+
"resolution": this.resolution,
703703
"clearBeforeRender": true });
704704
this.context = this.renderer.context;
705705
}
@@ -713,10 +713,10 @@ Phaser.Game.prototype = {
713713
// They requested WebGL and their browser supports it
714714
this.renderType = Phaser.WEBGL;
715715

716-
this.renderer = new PIXI.WebGLRenderer(this.width, this.height, { "view": this.canvas,
717-
"transparent": this.transparent,
718-
"resolution": this.resolution,
719-
"antialias": this.antialias,
716+
this.renderer = new PIXI.WebGLRenderer(this.width, this.height, { "view": this.canvas,
717+
"transparent": this.transparent,
718+
"resolution": this.resolution,
719+
"antialias": this.antialias,
720720
"preserveDrawingBuffer": this.preserveDrawingBuffer });
721721
this.context = null;
722722
}

0 commit comments

Comments
 (0)