mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-19 21:03:11 -07:00
Update UnitConverterDataLoader.cpp
Issue #2026 Due to incorrect value of `ViewMode::Speed, UnitConverterUnits::Speed_MilesPerHour, 44.7`, calculated value was different from actual (which should be) `ViewMode::Speed, UnitConverterUnits::Speed_MilesPerHour, 44.704`. Please correct me if I am wrong, this is my first contribution.
This commit is contained in:
parent
b0f30025fe
commit
252eddd5fd
1 changed files with 1 additions and 1 deletions
|
@ -927,7 +927,7 @@ void UnitConverterDataLoader::GetConversionData(_In_ unordered_map<ViewMode, uno
|
|||
{ ViewMode::Speed, UnitConverterUnits::Speed_Knot, 51.44 },
|
||||
{ ViewMode::Speed, UnitConverterUnits::Speed_Mach, 34030 },
|
||||
{ ViewMode::Speed, UnitConverterUnits::Speed_MetersPerSecond, 100 },
|
||||
{ ViewMode::Speed, UnitConverterUnits::Speed_MilesPerHour, 44.7 },
|
||||
{ ViewMode::Speed, UnitConverterUnits::Speed_MilesPerHour, 44.704 },
|
||||
{ ViewMode::Speed, UnitConverterUnits::Speed_Turtle, 8.94 },
|
||||
{ ViewMode::Speed, UnitConverterUnits::Speed_Horse, 2011.5 },
|
||||
{ ViewMode::Speed, UnitConverterUnits::Speed_Jet, 24585 },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue