fix interval '9' bug in QuarqParser

I'm assuming this was a typo.  '9' should be '0'.
This commit is contained in:
Justin Knotzke
2009-10-01 06:46:18 -04:00
committed by Sean Rhea
parent 6dca518fff
commit 96cdb4ebd9

View File

@@ -52,7 +52,7 @@ QuarqParser::incrementTime( const double new_time )
while (time_diff > seconds_from_start) {
rideFile->appendPoint(seconds_from_start, cad, hr, km,
kph, nm, watts, 0, 9, 0);
kph, nm, watts, 0, 0, 0);
seconds_from_start += SAMPLE_INTERVAL;
}