diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2015-08-04 17:49:17 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-08-09 23:55:03 -0700 |
commit | 1bea48f9bda5a719131573c42708d70862d6c0fb (patch) | |
tree | 5a9f109f59e4b5bd1849bec6f89d59cc067542cf /parse-xml.c | |
parent | 577965cc262a6e6dad128be4bdebf4482fc60731 (diff) | |
download | subsurface-1bea48f9bda5a719131573c42708d70862d6c0fb.tar.gz |
Fix bit shift on Suunto DB import
Let's do the bit shift properly and not by block size.
Fixes #906
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'parse-xml.c')
-rw-r--r-- | parse-xml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parse-xml.c b/parse-xml.c index 7c8d6bd7f..d8094dbc5 100644 --- a/parse-xml.c +++ b/parse-xml.c @@ -2385,7 +2385,7 @@ extern int dm5_dive(void *param, int columns, char **data, char **column) for (i = 0; interval && sampleBlob && i * interval < cur_dive->duration.seconds; i++) { float *depth = (float *)&sampleBlob[i * block_size + 3]; int32_t temp = (sampleBlob[i * block_size + 10] << 8) + sampleBlob[i * block_size + 11]; - int32_t pressure = (sampleBlob[i * block_size + 9] << block_size) + (sampleBlob[i * block_size + 8] << 8) + sampleBlob[i * block_size + 7]; + int32_t pressure = (sampleBlob[i * block_size + 9] << 16) + (sampleBlob[i * block_size + 8] << 8) + sampleBlob[i * block_size + 7]; sample_start(); cur_sample->time.seconds = i * interval; |