Skip to content

Commit cca9a63

Browse files
committed
Fix latitude assignment
1 parent 9d36cb0 commit cca9a63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/aero/t2s/modes/Track.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ public boolean isGroundBit() {
174174
}
175175

176176
public void setLatLon(double lat, double lon) {
177-
this.lon = lat;
177+
this.lat = lat;
178178
this.lon = lon;
179179
this.positionAvailable = true;
180180
}

0 commit comments

Comments
 (0)