Compile fix
This commit is contained in:
@@ -768,8 +768,7 @@ class AssetLibrary {
|
||||
|
||||
for (asset in manifest.assets) {
|
||||
|
||||
size = hasSize ? asset.size : 100;
|
||||
if (size == null) size = 100;
|
||||
size = hasSize && Reflect.hasField (asset, "size") ? asset.size : 100;
|
||||
id = asset.id;
|
||||
|
||||
if (Reflect.hasField (asset, "path")) {
|
||||
|
||||
Reference in New Issue
Block a user