Browse Source

AP_GPS: Remove unused operation

Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
master
Patrick José Pereira 7 years ago committed by Francisco Ferreira
parent
commit
10ffd89a0c
  1. 2
      libraries/AP_GPS/GPS_Backend.cpp

2
libraries/AP_GPS/GPS_Backend.cpp

@ -86,7 +86,7 @@ void AP_GPS_Backend::make_gps_time(uint32_t bcd_date, uint32_t bcd_milliseconds) @@ -86,7 +86,7 @@ void AP_GPS_Backend::make_gps_time(uint32_t bcd_date, uint32_t bcd_milliseconds)
msec = v % 1000; v /= 1000;
sec = v % 100; v /= 100;
min = v % 100; v /= 100;
hour = v % 100; v /= 100;
hour = v % 100;
int8_t rmon = mon - 2;
if (0 >= rmon) {

Loading…
Cancel
Save