From b6ca4e44feaddd69d19ed6c0770bad14942dfd8f Mon Sep 17 00:00:00 2001 From: freebipman Date: Wed, 16 Sep 2020 10:21:48 +1000 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BD=D0=B0=D0=B2=D0=B8=D0=B3=D0=B0?= =?UTF-8?q?=D1=86=D0=B8=D0=BE=D0=BD=D0=BD=D0=BE=D0=B9=20=D1=84=D1=83=D0=BD?= =?UTF-8?q?=D0=BA=D1=86=D0=B8=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/BipEmulator.Host/MainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BipEmulator.Host/MainForm.cs b/src/BipEmulator.Host/MainForm.cs index 78917d0..4d1b786 100644 --- a/src/BipEmulator.Host/MainForm.cs +++ b/src/BipEmulator.Host/MainForm.cs @@ -276,7 +276,7 @@ namespace BipEmulator.Host pressure = (uint)((float)nudPressure.Value * 133.322f), altitude = alt, latitude = (int)(3e6 * Math.Abs(lat)), - ns = lat < 0 ? 1 : 0, + ns = lat < 0 ? 0 : 1, longitude = (int)(3e6 * Math.Abs(lon)), ew = lon < 0 ? 2 : 3 };