mirror of
https://github.com/photonstorm/phaser
synced 2024-11-27 15:12:18 +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
|
||||
if (this.bmd === null)
|
||||
{
|
||||
this.bmd = game.make.bitmapData();
|
||||
this.bmd = this.game.make.bitmapData();
|
||||
this.canvas = this.bmd.canvas;
|
||||
this.ctx = this.bmd.context;
|
||||
}
|
||||
|
@ -176,7 +176,7 @@ Phaser.Create.prototype = {
|
|||
// No bmd? Let's make one
|
||||
if (this.bmd === null)
|
||||
{
|
||||
this.bmd = game.make.bitmapData();
|
||||
this.bmd = this.game.make.bitmapData();
|
||||
this.canvas = this.bmd.canvas;
|
||||
this.ctx = this.bmd.context;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue