Skip to content

Commit

Permalink
added missing 'handleLostContext' check
Browse files Browse the repository at this point in the history
  • Loading branch information
PrimaryFeather committed Jan 21, 2014
1 parent 0f0e308 commit 7c8d28e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion starling/src/starling/utils/AssetManager.as
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ package starling.utils

onComplete();
}
else if (mStarling.context.driverInfo == "Disposed")
else if (Starling.handleLostContext && mStarling.context.driverInfo == "Disposed")
{
log("Context lost while processing assets, retrying ...");
setTimeout(process, 1, asset);
Expand Down

0 comments on commit 7c8d28e

Please sign in to comment.