Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Disquse committed Aug 18, 2017
1 parent ad189ab commit d09f9f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions HUD.cs
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ public static PointF GetSafezoneBounds()
float h = Screen.Height;

return new PointF(
(int)Math.Round((w - (w * t)) / 2 + 1),
(int)Math.Round((h - (h * t)) / 2 - 2)
(int) Math.Round((w - (w * t)) / 2 + 1),
(int) Math.Round((h - (h * t)) / 2 - 2)
);
}

Expand Down Expand Up @@ -164,7 +164,7 @@ public static float GetBarWidth()
width = 240f;
break;
case (float)1.66666662693024: // 5:3
width = 191;
width = 191f;
break;
case (float)1.25: // 5:4
width = 255f;
Expand Down

0 comments on commit d09f9f2

Please sign in to comment.