You have an asset named none
, which breaks an enum in GMLive (gml_thread_status
) that uses none
as one of the options. You’ll have to either rename your asset or edit two lines of code in GMLive script (enum gml_thread_status{none
, globalvar gml_thread_status_none;gml_thread_status_none=[gml_thread_status.none];
).