Skip to content

Commit

Permalink
fix: Fixed NetTime.MinValue tick representation being larger than cur…
Browse files Browse the repository at this point in the history
…rent time
  • Loading branch information
TwoTenPvP committed Sep 30, 2020
1 parent d503a03 commit 3f0c582
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Ruffles/Time/NetTime.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public struct NetTime : IComparable, IComparable<NetTime>, IEquatable<NetTime>
/// Gets a new NetTime that represents the start time.
/// </summary>
/// <value>The startTime.</value>
public static NetTime MinValue => new NetTime(StartTime);
public static NetTime MinValue => new NetTime(0);

private readonly long InternalTicks;

Expand Down

0 comments on commit 3f0c582

Please sign in to comment.