mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-08 13:11:54 +00:00
i'm stupid, again
This commit is contained in:
parent
aa82664187
commit
0b3d4bf55c
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ ClassFunction(arraySlice) {
|
|||
s64 skipAmount = getIntValue(*args);
|
||||
s64 takeAmount = getIntValue(args[1]);
|
||||
|
||||
if (caller->solvedArray.vector.count < (skipAmount + takeAmount) || skipAmount <= 0 || takeAmount <= 0) {
|
||||
if (caller->solvedArray.vector.count < (skipAmount + takeAmount) || skipAmount < 0 || takeAmount <= 0) {
|
||||
SCRIPT_FATAL_ERR("Slicing out of range of array with len %d", (int)caller->solvedArray.vector.count);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue