mirror of
https://github.com/photonstorm/phaser
synced 2025-02-19 23:48:33 +00:00
Fixed jshint errors.
This commit is contained in:
parent
e01a754732
commit
c79a341c58
1 changed files with 2 additions and 2 deletions
|
@ -130,7 +130,7 @@ Phaser.Create.prototype = {
|
||||||
// No bmd? Let's make one
|
// No bmd? Let's make one
|
||||||
if (this.bmd === null)
|
if (this.bmd === null)
|
||||||
{
|
{
|
||||||
this.bmd = game.make.bitmapData();
|
this.bmd = this.game.make.bitmapData();
|
||||||
this.canvas = this.bmd.canvas;
|
this.canvas = this.bmd.canvas;
|
||||||
this.ctx = this.bmd.context;
|
this.ctx = this.bmd.context;
|
||||||
}
|
}
|
||||||
|
@ -176,7 +176,7 @@ Phaser.Create.prototype = {
|
||||||
// No bmd? Let's make one
|
// No bmd? Let's make one
|
||||||
if (this.bmd === null)
|
if (this.bmd === null)
|
||||||
{
|
{
|
||||||
this.bmd = game.make.bitmapData();
|
this.bmd = this.game.make.bitmapData();
|
||||||
this.canvas = this.bmd.canvas;
|
this.canvas = this.bmd.canvas;
|
||||||
this.ctx = this.bmd.context;
|
this.ctx = this.bmd.context;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue