Fixed AssetLoader undefined evt.loader

This commit is contained in:
Eemeli Kelokorpi 2014-03-05 19:43:23 +02:00
parent d2e300038d
commit f3792f44c2

View file

@ -113,7 +113,7 @@ PIXI.AssetLoader.prototype.load = function()
var scope = this; var scope = this;
function onLoad(evt) { function onLoad(evt) {
scope.onAssetLoaded(evt.loader); scope.onAssetLoaded(evt.content);
} }
this.loadCount = this.assetURLs.length; this.loadCount = this.assetURLs.length;