Skip to content

Commit bb83098

Browse files
committed
Fixed src/system/gps.c HasFix variable type from double to bool
1 parent 7f12997 commit bb83098

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/system/gps.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const int32_t MaxWestPosition = 8388608; // -2^23
4747

4848
NmeaGpsData_t NmeaGpsData;
4949

50-
static double HasFix = false;
50+
static bool HasFix = false;
5151
static double Latitude = 0;
5252
static double Longitude = 0;
5353

0 commit comments

Comments
 (0)