This commit is contained in:
Vasilii Rogin 2023-05-14 23:15:47 +03:00
parent 216bba5084
commit 7a0e537560
1 changed files with 3 additions and 3 deletions

View File

@ -137,11 +137,11 @@ public:
integerValue = programValue.integerValue;
return;
case VALUE_TYPE_FLOAT:
type = ArrayElementType::INT;
type = ArrayElementType::FLOAT;
floatValue = programValue.floatValue;
return;
case VALUE_TYPE_PTR:
type = ArrayElementType::INT;
type = ArrayElementType::POINTER;
pointerValue = programValue.pointerValue;
return;
case VALUE_TYPE_STRING: