this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

build fix for #1670

nesbox e1afcfee 666705db

+2 -2
+1 -1
src/api/squirrel.c
··· 1556 1556 sq_newclosure(vm, squirrel_errorHandler, 0); 1557 1557 sq_seterrorhandler(vm); 1558 1558 1559 - initLuaAPI(core); 1559 + initAPI(core); 1560 1560 1561 1561 { 1562 1562 HSQUIRRELVM vm = core->currentVM;
+1 -1
src/api/wren.c
··· 1489 1489 1490 1490 WrenVM* vm = core->currentVM = wrenNewVM(&config); 1491 1491 1492 - initLuaAPI(core); 1492 + initAPI(core); 1493 1493 1494 1494 if (wrenInterpret(core->currentVM, "main", code) != WREN_RESULT_SUCCESS) 1495 1495 {