This commit is contained in:
Vasilii Rogin 2023-05-15 00:18:51 +03:00
parent f206a626cb
commit 9373719953
1 changed files with 3 additions and 5 deletions

View File

@ -606,15 +606,13 @@ static void opGetArray(Program* program)
auto& strVal = arrayId;
auto pos = key.asInt();
auto str = programGetString(program, strVal.opcode, strVal.integerValue);
// TODO: Is this works?
char buf[2] = { 0 };
if (pos < strlen(str)) {
buf[0] = str[pos];
programPushString(program, buf);
programStackPushString(program, buf);
} else {
programPushString(program, buf);
programStackPushString(program, buf);
}
}
}