TODO: make this a warning for now...until then need to find out what's causing exteriorAppearanceTemplate to be a null pointer now

This commit is contained in:
DarthArgus
2015-10-15 12:07:18 -05:00
parent 4973d49138
commit 71b27eba67
@@ -68,7 +68,7 @@ void SetWarningCallback(WarningCallback);
template <class T>
inline T *NonNull(T *pointer, const char *name)
{
FATAL(!pointer, ("%s pointer is null", name));
WARNING(!pointer, ("%s pointer is null", name));
return pointer;
}