Intellipap DV64 loader now imports the most recent day

Previous code had an off-by-one error and was not importing the last day in the file.
This commit is contained in:
Guy Scharf 2020-12-13 17:18:19 -07:00 committed by Guy Scharf
parent 35aec29910
commit 38d8b84266

View File

@ -785,7 +785,7 @@ int IntellipapLoader::OpenDV6(const QString & path)
//data[0x11]; // Start of data block
//data[0x12]; // Record count
// First record is block header
for (int r=1; r<records-1; r++) {
for (int r=1; r<records; r++) {
data += DV6_S_RecLength; // just so happen the headers the same length, though we probably should parse it to get it's version
DV6_S_Record R;