Fix the divisor for the compass headings.

This commit is contained in:
Jef Driesen 2010-03-15 11:07:54 +00:00
parent f14b40e99e
commit 322577ab8c

View File

@ -331,7 +331,7 @@ suunto_d9_parser_samples_foreach (parser_t *abstract, sample_callback_t callback
sample.event.value = 0;
} else {
sample.event.type = SAMPLE_EVENT_HEADING;
sample.event.value = heading / 4;
sample.event.value = heading / 2;
}
sample.event.time = seconds;
if (callback) callback (SAMPLE_TYPE_EVENT, sample, userdata);