Skip to content

Commit

Permalink
Util fix
Browse files Browse the repository at this point in the history
  • Loading branch information
twdragon committed Aug 7, 2023
1 parent 9099f71 commit acea940
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ void decode_gps_coord(const int32_t *value,
double &min)
{
deg = static_cast<double>(*value) / 10000000.f;
min = static_cast<double>((*value) % 10000000) / 6000000.f;
min = static_cast<double>((*value) % 10000000) / 100000.f;
}

/* PACKET DECODERS */
Expand Down

0 comments on commit acea940

Please sign in to comment.