diff --git a/source/script/arrayClass.c b/source/script/arrayClass.c index 44c2dc3..fdc10c1 100644 --- a/source/script/arrayClass.c +++ b/source/script/arrayClass.c @@ -257,6 +257,7 @@ ClassFunctionTableEntry_t arrayFunctions[] = { {"copy", arrayCopy, 0, 0}, {"set", arraySet, 2, oneIntOneAny}, {"+", arrayAdd, 1, anotherAnotherOneVarArg}, + {"add", arrayAdd, 1, anotherAnotherOneVarArg}, {"-", arrayMinus, 1, anotherOneIntArg}, {"contains", arrayContains, 1, anotherAnotherOneVarArg}, {"bytestostr", bytesToStr, 0, 0}, diff --git a/source/script/standardLibrary.c b/source/script/standardLibrary.c index 80d2df2..c2d4c6b 100644 --- a/source/script/standardLibrary.c +++ b/source/script/standardLibrary.c @@ -399,6 +399,7 @@ STUBBED(stdGetMs) STUBBED(stdClear) STUBBED(stdRmDir) STUBBED(stdFileExists) +STUBBED(stdFileDel) #endif u8 oneIntoneFunction[] = { IntClass, FunctionClass };