mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Uemis GPS location tracking seems backwards
I can't figure out how this ever worked... Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
0b7c11a597
commit
eef3d63de6
2 changed files with 2 additions and 2 deletions
2
uemis.c
2
uemis.c
|
@ -150,7 +150,7 @@ int uemis_get_weight_unit(int diveid)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void uemis_mark_divelocation(int diveid, int divespot, char **location, degrees_t *longitude, degrees_t *latitude)
|
void uemis_mark_divelocation(int diveid, int divespot, char **location, degrees_t *latitude, degrees_t *longitude)
|
||||||
{
|
{
|
||||||
struct uemis_helper *hp = uemis_get_helper(diveid);
|
struct uemis_helper *hp = uemis_get_helper(diveid);
|
||||||
hp->divespot = divespot;
|
hp->divespot = divespot;
|
||||||
|
|
2
uemis.h
2
uemis.h
|
@ -14,7 +14,7 @@ extern "C" {
|
||||||
|
|
||||||
void uemis_parse_divelog_binary(char *base64, void *divep);
|
void uemis_parse_divelog_binary(char *base64, void *divep);
|
||||||
int uemis_get_weight_unit(int diveid);
|
int uemis_get_weight_unit(int diveid);
|
||||||
void uemis_mark_divelocation(int diveid, int divespot, char **location, degrees_t *longitude, degrees_t *latitude);
|
void uemis_mark_divelocation(int diveid, int divespot, char **location, degrees_t *latitude, degrees_t *longitude);
|
||||||
void uemis_set_divelocation(int divespot, char *text, double longitude, double latitude);
|
void uemis_set_divelocation(int divespot, char *text, double longitude, double latitude);
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
|
|
Loading…
Add table
Reference in a new issue