1.0.6a release to fix an issue in the StateManager.

This commit is contained in:
Richard Davey
2013-09-26 11:49:58 +01:00
parent c29fcfb510
commit 9642d4994a
5 changed files with 22 additions and 7 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
*/
var Phaser = Phaser || {
VERSION: '1.0.6',
VERSION: '1.0.6a',
GAMES: [],
AUTO: 0,
CANVAS: 1,
+5 -1
View File
@@ -368,9 +368,13 @@ Phaser.StateManager.prototype = {
if (this._created == false && this.onCreateCallback)
{
// console.log('Create callback found');
this._created = true;
this.onCreateCallback.call(this.callbackContext);
}
this._created = true;
else
{
this._created = true;
}
},