You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now we are using lua_pop(pduel->lua->current_state, 3); in synchro related produces.
This way we use lua stack is messy and dangerous, and it may cause problem.
There is a known problem that in android with lua 5.4, EFFECT_SYNCHRO_MATERIAL_CUSTOM will crash on the lua_popstep because lua seem trys to close to-be-closed variables which not exist.
The text was updated successfully, but these errors were encountered:
Now we are using
lua_pop(pduel->lua->current_state, 3);
in synchro related produces.This way we use lua stack is messy and dangerous, and it may cause problem.
There is a known problem that in android with lua 5.4,
EFFECT_SYNCHRO_MATERIAL_CUSTOM
will crash on thelua_pop
step because lua seem trys to close to-be-closed variables which not exist.The text was updated successfully, but these errors were encountered: