Skip to content

Commit

Permalink
Fix latitude assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
Douglasdc3 committed Feb 21, 2023
1 parent 9d36cb0 commit cca9a63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/aero/t2s/modes/Track.java
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ public boolean isGroundBit() {
}

public void setLatLon(double lat, double lon) {
this.lon = lat;
this.lat = lat;
this.lon = lon;
this.positionAvailable = true;
}
Expand Down

0 comments on commit cca9a63

Please sign in to comment.