修复错误的偏移量增加值

This commit is contained in:
Chenx221 2024-10-13 19:08:25 +08:00
parent f42192bdc1
commit b853aaeffc

View File

@ -118,7 +118,7 @@ namespace EscudeTools
{
record.values[j] = BitConverter.ToInt32(sheet_data, offset);
}
offset += 4; //可能有问题
offset += sheet.col[j].size; //较小概率还有问题
}
recordFather.values[i] = record;
}