summaryrefslogtreecommitdiff
path: root/game/states/boot.js
diff options
context:
space:
mode:
authorJustin Worthe <justin.worthe@gmail.com>2014-09-21 08:00:06 +0200
committerJustin Worthe <justin.worthe@gmail.com>2014-09-21 08:00:06 +0200
commit373e5f472f829714939103617cfe14e98d981b18 (patch)
tree4fa9bf8609537bad5b12a7e51915f4a07dee2873 /game/states/boot.js
parent8c70582bf01821f8a71910013372e3b12f06cdd3 (diff)
Removed unused states and templating of main.js
Diffstat (limited to 'game/states/boot.js')
-rw-r--r--game/states/boot.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/game/states/boot.js b/game/states/boot.js
index 80b7d4b..eade2ff 100644
--- a/game/states/boot.js
+++ b/game/states/boot.js
@@ -9,7 +9,7 @@ Boot.prototype = {
},
create: function() {
this.game.input.maxPointers = 1;
- this.game.state.start('preload');
+ this.game.state.start('load');
}
};