Skip to content

Commit

Permalink
Common: change ms to meters_per_second
Browse files Browse the repository at this point in the history
  • Loading branch information
meee1 committed Oct 29, 2015
1 parent 8aaef6d commit fe8bea2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Common.cs
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ public enum distances

public enum speeds
{
ms,
meters_per_second,
fps,
kph,
mph,
Expand Down
2 changes: 1 addition & 1 deletion MainV2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2617,7 +2617,7 @@ public void ChangeUnits()
{
switch ((Common.speeds)Enum.Parse(typeof(Common.speeds), MainV2.config["speedunits"].ToString()))
{
case Common.speeds.ms:
case Common.speeds.meters_per_second:
CurrentState.multiplierspeed = 1;
CurrentState.SpeedUnit = "m/s";
break;
Expand Down

0 comments on commit fe8bea2

Please sign in to comment.