mirror of
https://github.com/photonstorm/phaser
synced 2024-11-27 07:01:20 +00:00
Merge branch 'master' of https://github.com/photonstorm/phaser
This commit is contained in:
commit
dd116f76c1
1 changed files with 10 additions and 10 deletions
|
@ -265,7 +265,7 @@ var Game = new Class({
|
|||
{
|
||||
this.isBooted = true;
|
||||
|
||||
this.config.preBoot();
|
||||
this.config.preBoot(this);
|
||||
|
||||
CreateRenderer(this);
|
||||
|
||||
|
@ -292,7 +292,7 @@ var Game = new Class({
|
|||
{
|
||||
this.isRunning = true;
|
||||
|
||||
this.config.postBoot();
|
||||
this.config.postBoot(this);
|
||||
|
||||
if (this.renderer)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue