Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/CovidSim.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4779,7 +4779,7 @@ void RecordSample(double t, int n)
if (P.DoAdUnits && P.OutputAdUnitAge)
RecordAdminAgeBreakdowns(n);

RecordQuarNotInfected(n, ts);
RecordQuarNotInfected(n, ts);

if (P.DoSeverity)
{
Expand Down Expand Up @@ -5699,7 +5699,7 @@ int GetInputParameter3(FILE* dat, const char* SItemName, const char* ItemType, v
sscanf(match, "%s", *(((char**)ItemPtr) + CurPos + Offset));
}
else
CurPos = NumItem;
break;
}
}
}
Expand All @@ -5720,8 +5720,8 @@ int GetInputParameter3(FILE* dat, const char* SItemName, const char* ItemType, v
}
else
{
i = NumItem2;
j = NumItem;
break;
}
}
//Offset=Offset+(NumItem2-1); //added this line to get the correct offset in address position when incrementing j
Expand Down