|
ERR_FAIL_COND_V_MSG(res->data == NULL, RES(), bin->error); |
Yes. There is some bug:
#if defined(ERR_FAIL_COND_V_MSG)
ERR_FAIL_COND_V_MSG(res->data == NULL, RES(), bin->error);
#else
ERR_EXPLAIN(bin->error);
ERR_FAIL_COND_V(res->data == NULL, RES());
ERR_FAIL_COND_V_MSG(res->data == NULL, RES(), bin->error); // AAAA WATAFK
#endif
In code, we check the ERR_FAIL_COND_V_MSG is defined, but if it isn't, we whatever use it
spine/register_types.cpp
Line 212 in 3abeaaf
Yes. There is some bug:
In code, we check the ERR_FAIL_COND_V_MSG is defined, but if it isn't, we whatever use it