(ded4a3e0a) v0.9.0.7
This commit is contained in:
@@ -210,8 +210,8 @@ namespace Barotrauma
|
||||
/// </summary>
|
||||
public static float GetMidAngle(float from, float to)
|
||||
{
|
||||
float max = MathHelper.Max(from, to);
|
||||
float min = MathHelper.Min(from, to);
|
||||
float max = Math.Max(from, to);
|
||||
float min = Math.Min(from, to);
|
||||
float diff = max - min;
|
||||
if (from < to)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user