From 250d4b488bb3b1ef1313512e2af716d22b2d9805 Mon Sep 17 00:00:00 2001 From: Joshua Granick Date: Tue, 14 Jul 2015 21:33:41 -0700 Subject: [PATCH] Add explicit assetLibrary.unload when calling Assets.unloadLibrary --- lime/Assets.hx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lime/Assets.hx b/lime/Assets.hx index 0182aa001..71a9dae1c 100644 --- a/lime/Assets.hx +++ b/lime/Assets.hx @@ -935,6 +935,7 @@ class Assets { if (library != null) { cache.clear (name + ":"); + library.unload (); library.eventCallback = null; } @@ -1140,6 +1141,13 @@ class AssetLibrary { } + private function unload ():Void { + + + + } + + }