Fix objectPool.size (resolve #934)

This commit is contained in:
Joshua Granick
2017-02-27 11:41:33 -08:00
parent fb6f457605
commit bd8e98243d

View File

@@ -89,7 +89,7 @@ package lime.utils;
private function get_size ():Int {
if (__size != null) return null;
if (__size != null) return __size;
return __inactiveObjects.length + __activeObjects.length;
}