mirror of
https://github.com/photonstorm/phaser
synced 2024-11-10 15:14:47 +00:00
Typo fix
This commit is contained in:
parent
9616e8187a
commit
b03ae6a9ad
1 changed files with 3 additions and 3 deletions
|
@ -211,7 +211,7 @@ var SpineFile = new Class({
|
|||
|
||||
var atlasCache;
|
||||
var atlasKey = '';
|
||||
var combinedAtlastData = '';
|
||||
var combinedAtlasData = '';
|
||||
var preMultipliedAlpha = (this.config.preMultipliedAlpha) ? true : false;
|
||||
|
||||
for (var i = 1; i < this.files.length; i++)
|
||||
|
@ -224,7 +224,7 @@ var SpineFile = new Class({
|
|||
|
||||
atlasCache = file.cache;
|
||||
|
||||
combinedAtlastData = combinedAtlastData.concat(file.data);
|
||||
combinedAtlasData = combinedAtlasData.concat(file.data);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -238,7 +238,7 @@ var SpineFile = new Class({
|
|||
file.pendingDestroy();
|
||||
}
|
||||
|
||||
atlasCache.add(atlasKey, { preMultipliedAlpha: preMultipliedAlpha, data: combinedAtlastData });
|
||||
atlasCache.add(atlasKey, { preMultipliedAlpha: preMultipliedAlpha, data: combinedAtlasData });
|
||||
|
||||
this.complete = true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue