Skip to content

Commit 3f0c582

Browse files
committed
fix: Fixed NetTime.MinValue tick representation being larger than current time
1 parent d503a03 commit 3f0c582

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Ruffles/Time/NetTime.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public struct NetTime : IComparable, IComparable<NetTime>, IEquatable<NetTime>
2929
/// Gets a new NetTime that represents the start time.
3030
/// </summary>
3131
/// <value>The startTime.</value>
32-
public static NetTime MinValue => new NetTime(StartTime);
32+
public static NetTime MinValue => new NetTime(0);
3333

3434
private readonly long InternalTicks;
3535

0 commit comments

Comments
 (0)