diff --git a/src/util.cpp b/src/util.cpp index 614eb84..3c9c3ab 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -116,7 +116,7 @@ void decode_gps_coord(const int32_t *value, double &min) { deg = static_cast(*value) / 10000000.f; - min = static_cast((*value) % 10000000) / 6000000.f; + min = static_cast((*value) % 10000000) / 100000.f; } /* PACKET DECODERS */