This commit is contained in:
ElenaSubbotina
2024-10-26 18:10:52 +03:00
parent cd71bc0672
commit 03919dcb33

View File

@ -45,15 +45,21 @@ void MOper::load(CFRecord& record)
{
record >> colLast >> rowLast;
for(int i = 0; i < (colLast + 1) * (rowLast + 1); ++i)
for (int i = 0; i < (colLast + 1) * (rowLast + 1); ++i)
{
unsigned char rec_type;
record >> rec_type;
SerArPtr ser(SerAr::createSerAr(rec_type));
record >> *ser;
extOper.push_back(ser);
if (ser)
{
record >> *ser;
extOper.push_back(ser);
}
else
{
break;
}
}
}