فهرست منبع

check loader==null on access (close #194)

ncannasse 7 سال پیش
والد
کامیت
29395eed84
1فایلهای تغییر یافته به همراه3 افزوده شده و 1 حذف شده
  1. 3 1
      hxd/res/FileTree.hx

+ 3 - 1
hxd/res/FileTree.hx

@@ -221,7 +221,9 @@ class FileTree {
 					args : [],
 					ret : loaderType,
 					expr : macro {
-						return hxd.res.Loader.currentInstance;
+						var l = hxd.res.Loader.currentInstance;
+						if( l == null ) throw "Resource loader not initialized: call to hxd.Res.initXXX() required";
+						return l;
 					}
 				}),
 				pos : pos